biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / winacl / default.nix
blob3ff55cf32a72bab4fb566ed43b4cbfdc5cef61b9
2   lib,
3   buildPythonPackage,
4   cryptography,
5   fetchPypi,
6   pythonOlder,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "winacl";
12   version = "0.1.9";
13   pyproject = true;
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-r3DC7DAXi/njyKHEjCXoeBI1/iwbMhrbRuLyrh+NSqs=";
20   };
22   build-system = [ setuptools ];
24   dependencies = [ cryptography ];
26   # Project doesn't have tests
27   doCheck = false;
29   pythonImportsCheck = [ "winacl" ];
31   meta = with lib; {
32     description = "Python module for ACL/ACE/Security descriptor manipulation";
33     homepage = "https://github.com/skelsec/winacl";
34     changelog = "https://github.com/skelsec/winacl/releases/tag/${version}";
35     license = with licenses; [ mit ];
36     maintainers = with maintainers; [ fab ];
37   };