forked from mirrors/nixpkgs
python3Packages.winacl: init at 0.1.0
This commit is contained in:
parent
210b6509ed
commit
e4201344aa
25
pkgs/development/python-modules/winacl/default.nix
Normal file
25
pkgs/development/python-modules/winacl/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue