1{ buildPythonPackage
2, fetchPypi
3, lib
4
5# pythonPackages
6, pyasn1
7}:
8
9buildPythonPackage rec {
10 pname = "pysmb";
11 version = "1.1.28";
12
13 src = fetchPypi {
14 inherit pname version;
15 format = "setuptools";
16 extension = "zip";
17 sha256 = "0x44yq440c1j3xnl7qigz2fpfzhx68n9mbj7ps7rd0kj0plcmr2q";
18 };
19
20 propagatedBuildInputs = [
21 pyasn1
22 ];
23
24 # Tests require Network Connectivity and a server up and running
25 # https://github.com/miketeo/pysmb/blob/master/python3/tests/README_1st.txt
26 doCheck = false;
27
28 meta = {
29 description = "Experimental SMB/CIFS library written in Python to support file sharing between Windows and Linux machines";
30 homepage = "https://miketeo.net/wp/index.php/projects/pysmb";
31 license = lib.licenses.zlib;
32 maintainers = with lib.maintainers; [
33 kamadorueda
34 ];
35 };
36}