nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib
2, buildPythonPackage
3, fetchPypi
4, pythonOlder
5}:
6
7buildPythonPackage rec {
8 pname = "winacl";
9 version = "0.1.3";
10 format = "setuptools";
11
12 disabled = pythonOlder "3.7";
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-G6xWep0hMACCqiJGuw+UpZH8qOIY4WO6sY3w4y7v6gY=";
17 };
18
19 # Project doesn't have tests
20 doCheck = false;
21 pythonImportsCheck = [ "winacl" ];
22
23 meta = with lib; {
24 description = "Python module for ACL/ACE/Security descriptor manipulation";
25 homepage = "https://github.com/skelsec/winacl";
26 license = with licenses; [ mit ];
27 maintainers = with maintainers; [ fab ];
28 };
29}