about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/winsspi/default.nix
blob: 02156ba17e50ac45e84b1b53999b68d43bdc836d (plain) (blame)
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
{ 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 ];
  };
}