python3Packages.pysmb: 1.2.8 -> 1.2.9

https://github.com/miketeo/pysmb/releases/tag/pysmb-1.2.9
This commit is contained in:
Martin Weinelt
2022-12-30 20:13:38 +01:00
parent 8e38f2c579
commit 93c2e912c0

View File

@@ -1,26 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, pyasn1
, pythonOlder
, tqdm
}:
buildPythonPackage rec {
pname = "pysmb";
version = "1.2.8";
version = "1.2.9";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
format = "setuptools";
extension = "zip";
hash = "sha256-OwfbFiF0ZQOdDCVpTAcFuDZjyoIlniCfNWbVd1Nqc5U=";
src = fetchFromGitHub {
owner = "miketeo";
repo = "pysmb";
rev = "refs/tags/pysmb-${version}";
hash = "sha256-2AZAtypotSVXWfwokUpfWYQMiMq6EgbdBx2G7bU0Cqw=";
};
propagatedBuildInputs = [
pyasn1
tqdm
];
# Tests require Network Connectivity and a server up and running
@@ -33,6 +35,7 @@ buildPythonPackage rec {
];
meta = with lib; {
changelog = "https://github.com/miketeo/pysmb/releases/tag/pysmb-${version}";
description = "Experimental SMB/CIFS library written in Python to support file sharing between Windows and Linux machines";
homepage = "https://miketeo.net/wp/index.php/projects/pysmb";
license = licenses.zlib;