depot/third_party/nixpkgs/pkgs/development/python-modules/aiowinreg/default.nix
Default email 841d9c7fc1 Project import generated by Copybara.
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
2021-06-29 00:13:55 +01:00

31 lines
661 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, winacl
}:
buildPythonPackage rec {
pname = "aiowinreg";
version = "0.0.5";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "096663ec3db35fdc7ccc1c2d0d64a11cf64f4baa48955088e42b6a649ce418a5";
};
propagatedBuildInputs = [ winacl ];
# Project doesn't have tests
doCheck = false;
pythonImportsCheck = [ "aiowinreg" ];
meta = with lib; {
description = "Python module to parse the registry hive";
homepage = "https://github.com/skelsec/aiowinreg";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}