Merge pull request #108809 from fabaff/aiowinreg

python3Packages.aiowinreg: init at 0.0.3
This commit is contained in:
Sandro 2021-01-11 01:31:29 +01:00 committed by GitHub
commit ac42d2580b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -272,6 +272,8 @@ in {
aiounittest = callPackage ../development/python-modules/aiounittest { };
aiowinreg = callPackage ../development/python-modules/aiowinreg { };
aiozeroconf = callPackage ../development/python-modules/aiozeroconf { };
airly = callPackage ../development/python-modules/airly { };