nixpkgs/pkgs/development/python-modules/aiowinreg/default.nix
2021-07-26 22:44:07 +02:00

37 lines
692 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, winacl
, prompt_toolkit
}:
buildPythonPackage rec {
pname = "aiowinreg";
version = "0.0.6";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "0h0r9xrz1n8y75f2p21f7phqrlpsymyiipmgzr0lj591irzjmjjy";
};
propagatedBuildInputs = [
prompt_toolkit
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 ];
};
}