My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pysmbc/default.nix

31 lines
639 B

{ lib
, buildPythonPackage
, fetchPypi
, samba
, pkg-config
}:
buildPythonPackage rec {
pname = "pysmbc";
version = "1.0.23";
src = fetchPypi {
inherit pname version;
sha256 = "1y0n1n6jkzf4mr5lqfc73l2m0qp56gvxwfjnx2vj8c0hh5i1gnq8";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ samba ];
# Tests would require a local SMB server
doCheck = false;
pythonImportsCheck = [ "smbc" ];
meta = with lib; {
description = "libsmbclient binding for Python";
homepage = "https://github.com/hamano/pysmbc";
license = with licenses; [ gpl2Plus ];
maintainers = with maintainers; [ fab ];
};
}