nixpkgs/pkgs/development/python-modules/winacl/default.nix
2021-12-22 19:09:11 +00:00

26 lines
575 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "winacl";
version = "0.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "187b4394ef247806f50e1d8320bdb9e33ad1f759d9e61e2e391b97b9adf5f58a";
};
# Project doesn't have tests
doCheck = false;
pythonImportsCheck = [ "winacl" ];
meta = with lib; {
description = "Python module for ACL/ACE/Security descriptor manipulation";
homepage = "https://github.com/skelsec/winacl";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}