35 lines
703 B
Nix
35 lines
703 B
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchPypi,
|
||
|
minikerberos,
|
||
|
pythonOlder,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "winsspi";
|
||
|
version = "0.0.11";
|
||
|
format = "setuptools";
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
hash = "sha256-AXC6SJ+iWPGqTmdgoWKEbD8tDUUcg2aD609hO2bdQfM=";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ minikerberos ];
|
||
|
|
||
|
# Module doesn't have tests
|
||
|
doCheck = false;
|
||
|
|
||
|
pythonImportsCheck = [ "winsspi" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Python module for ACL/ACE/Security descriptor manipulation";
|
||
|
homepage = "https://github.com/skelsec/winsspi";
|
||
|
license = with licenses; [ mit ];
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|