Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / winsspi / default.nix
blob02156ba17e50ac45e84b1b53999b68d43bdc836d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , minikerberos
5 , pythonAtLeast
6 }:
8 buildPythonPackage rec {
9   pname = "winsspi";
10   version = "0.0.9";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "1q8hr8l8d9jxyp55qsrlkyhdhqjc0n18ajzms7hf1xkhdl7rrbd2";
15   };
16   propagatedBuildInputs = [ minikerberos ];
18   # Project doesn't have tests
19   doCheck = false;
20   pythonImportsCheck = [ "winsspi" ];
22   meta = with lib; {
23     description = "Python module for ACL/ACE/Security descriptor manipulation";
24     homepage = "https://github.com/skelsec/winsspi";
25     license = with licenses; [ mit ];
26     maintainers = with maintainers; [ fab ];
27   };