From 2033a38feb6efa46ed8485b2fdc7129fdb2de8ca Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 10 Jan 2021 18:03:58 +0100 Subject: [PATCH] python36Packages.aiowinreg: init at 0.0.3 --- .../python-modules/aiowinreg/default.nix | 28 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/development/python-modules/aiowinreg/default.nix diff --git a/pkgs/development/python-modules/aiowinreg/default.nix b/pkgs/development/python-modules/aiowinreg/default.nix new file mode 100644 index 00000000000..c6375b21efe --- /dev/null +++ b/pkgs/development/python-modules/aiowinreg/default.nix @@ -0,0 +1,28 @@ +{ lib +, buildPythonPackage +, fetchPypi +, pythonOlder +}: + +buildPythonPackage rec { + pname = "aiowinreg"; + version = "0.0.3"; + + disabled = pythonOlder "3.6"; + + src = fetchPypi { + inherit pname version; + sha256 = "0gxhx9m45yyr1rmgs7f1jchkgxk2zipk9g3s5ix90d267in8hsn9"; + }; + + # 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 ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ad775f0712b..42557d60b84 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -267,6 +267,8 @@ in { aiounittest = callPackage ../development/python-modules/aiounittest { }; + aiowinreg = callPackage ../development/python-modules/aiowinreg { }; + aiozeroconf = callPackage ../development/python-modules/aiozeroconf { }; ajpy = callPackage ../development/python-modules/ajpy { };