python3Packages.winsspi: init at 0.0.9
This commit is contained in:
parent
83f0c1b908
commit
d2af3cca3b
28
pkgs/development/python-modules/winsspi/default.nix
Normal file
28
pkgs/development/python-modules/winsspi/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, minikerberos
|
||||
, pythonAtLeast
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "winsspi";
|
||||
version = "0.0.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1q8hr8l8d9jxyp55qsrlkyhdhqjc0n18ajzms7hf1xkhdl7rrbd2";
|
||||
};
|
||||
propagatedBuildInputs = [ minikerberos ];
|
||||
|
||||
# Project 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 ];
|
||||
};
|
||||
}
|
@ -469,6 +469,8 @@ in {
|
||||
|
||||
asyncwhois = callPackage ../development/python-modules/asyncwhois { };
|
||||
|
||||
asysocks = callPackage ../development/python-modules/asysocks { };
|
||||
|
||||
atlassian-python-api = callPackage ../development/python-modules/atlassian-python-api { };
|
||||
|
||||
atom = callPackage ../development/python-modules/atom { };
|
||||
@ -3911,6 +3913,8 @@ in {
|
||||
|
||||
minidump = callPackage ../development/python-modules/minidump { };
|
||||
|
||||
minikerberos = callPackage ../development/python-modules/minikerberos { };
|
||||
|
||||
minimock = callPackage ../development/python-modules/minimock { };
|
||||
|
||||
mininet-python = (toPythonModule (pkgs.mininet.override { inherit python; })).py;
|
||||
@ -7973,6 +7977,8 @@ in {
|
||||
|
||||
winacl = callPackage ../development/python-modules/winacl { };
|
||||
|
||||
winsspi = callPackage ../development/python-modules/winsspi { };
|
||||
|
||||
wled = callPackage ../development/python-modules/wled { };
|
||||
|
||||
word2vec = callPackage ../development/python-modules/word2vec { };
|
||||
|
Loading…
Reference in New Issue
Block a user