python3.pkgs.python-registry: init at 1.3.1
This commit is contained in:
parent
aa452d69a1
commit
19fe713b73
2 changed files with 36 additions and 0 deletions
34
pkgs/development/python-modules/python-registry/default.nix
Normal file
34
pkgs/development/python-modules/python-registry/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, enum-compat
|
||||||
|
, unicodecsv
|
||||||
|
}:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "python-registry";
|
||||||
|
version = "1.3.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "99185f67d5601be3e7843e55902d5769aea1740869b0882f34ff1bd4b43b1eb2";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
enum-compat
|
||||||
|
unicodecsv
|
||||||
|
];
|
||||||
|
|
||||||
|
# no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"Registry"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Pure Python parser for Windows Registry hives";
|
||||||
|
homepage = "https://github.com/williballenthin/python-registry";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = teams.determinatesystems.members;
|
||||||
|
};
|
||||||
|
}
|
|
@ -6938,6 +6938,8 @@ in {
|
||||||
|
|
||||||
python-redis-lock = callPackage ../development/python-modules/python-redis-lock { };
|
python-redis-lock = callPackage ../development/python-modules/python-redis-lock { };
|
||||||
|
|
||||||
|
python-registry = callPackage ../development/python-modules/python-registry { };
|
||||||
|
|
||||||
python-rtmidi = callPackage ../development/python-modules/python-rtmidi { };
|
python-rtmidi = callPackage ../development/python-modules/python-rtmidi { };
|
||||||
|
|
||||||
python-sat = callPackage ../development/python-modules/python-sat { };
|
python-sat = callPackage ../development/python-modules/python-sat { };
|
||||||
|
|
Loading…
Reference in a new issue