depot/third_party/nixpkgs/pkgs/development/python-modules/pysmbc/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

42 lines
729 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, samba
, pkg-config
, pythonOlder
}:
buildPythonPackage rec {
pname = "pysmbc";
version = "1.0.25.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-IvFxXfglif2cxCU/6rOQtO8Lq/FPZFE82NB7N4mWMiY=";
};
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 ];
};
}