3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.winacl: init at 0.1.0

This commit is contained in:
Fabian Affolter 2021-01-08 22:42:01 +01:00
parent 210b6509ed
commit e4201344aa
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "winacl";
version = "0.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "05xhdhbvzs1hcd8lxmdr9mpr6ifx5flhlvk6jr0qi6h25imhqclp";
};
# Project doesn't have tests
doCheck = false;
pythonImportsCheck = [ "winacl" ];
meta = with lib; {
description = "Python module for ACL/ACE/Security descriptor manipulation";
homepage = "https://github.com/skelsec/winacl";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -7943,6 +7943,8 @@ in {
willow = callPackage ../development/python-modules/willow { };
winacl = callPackage ../development/python-modules/winacl { };
wled = callPackage ../development/python-modules/wled { };
word2vec = callPackage ../development/python-modules/word2vec { };