blob: f9e12c9c973ac0c4f178178ee4e8997c9beb71b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
lib,
buildPythonPackage,
fetchPypi,
minikerberos,
}:
buildPythonPackage rec {
pname = "winsspi";
version = "0.0.11";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-AXC6SJ+iWPGqTmdgoWKEbD8tDUUcg2aD609hO2bdQfM=";
};
propagatedBuildInputs = [ minikerberos ];
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [ "winsspi" ];
meta = {
description = "Python module for ACL/ACE/Security descriptor manipulation";
homepage = "https://github.com/skelsec/winsspi";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|