mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
57 lines
954 B
Nix
57 lines
954 B
Nix
{ lib
|
|
, asyauth
|
|
, asysocks
|
|
, buildPythonPackage
|
|
, colorama
|
|
, fetchPypi
|
|
, minikerberos
|
|
, prompt-toolkit
|
|
, pycryptodomex
|
|
, pythonOlder
|
|
, six
|
|
, tqdm
|
|
, winacl
|
|
, winsspi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aiosmb";
|
|
version = "0.4.4";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-IGIEmM9eZ5T+op3ctGr72oy/cU48+OHaFJaZ8DRTY38=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
asyauth
|
|
asysocks
|
|
colorama
|
|
minikerberos
|
|
prompt-toolkit
|
|
pycryptodomex
|
|
six
|
|
tqdm
|
|
winacl
|
|
winsspi
|
|
];
|
|
|
|
# Project doesn't have tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"aiosmb"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python SMB library";
|
|
homepage = "https://github.com/skelsec/aiosmb";
|
|
changelog = "https://github.com/skelsec/aiosmb/releases/tag/${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|