nixpkgs/pkgs/development/python-modules/aiosmb/default.nix

47 lines
791 B
Nix
Raw Normal View History

2021-03-24 13:20:28 +00:00
{ lib
, asysocks
, buildPythonPackage
, colorama
2021-03-24 13:20:28 +00:00
, fetchPypi
, minikerberos
, prompt_toolkit
, pythonOlder
, six
, tqdm
, winacl
, winsspi
}:
buildPythonPackage rec {
pname = "aiosmb";
version = "0.2.44";
2021-03-24 13:20:28 +00:00
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-xNdrOO0BqV4sD6U39G2RXihDBBf516x8RLiqNLnZyWk=";
2021-03-24 13:20:28 +00:00
};
propagatedBuildInputs = [
asysocks
colorama
2021-03-24 13:20:28 +00:00
minikerberos
prompt_toolkit
2021-03-24 13:20:28 +00:00
six
tqdm
winacl
winsspi
2021-03-24 13:20:28 +00:00
];
# Project doesn't have tests
doCheck = false;
pythonImportsCheck = [ "aiosmb" ];
meta = with lib; {
description = "Python SMB library";
homepage = "https://github.com/skelsec/aiosmb";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}