12 buildPythonPackage rec {
13 pname = "python-registry";
17 disabled = pythonOlder "3.9";
19 src = fetchFromGitHub {
20 owner = "williballenthin";
21 repo = "python-registry";
22 rev = "refs/tags/${version}";
23 hash = "sha256-OgRPcyx+NJnbtETMakUT0p8Pb0Qfzgj+qvWtmJksnT8=";
26 pythonRemoveDeps = [ "enum-compat" ];
28 build-system = [ setuptools ];
30 dependencies = [ unicodecsv ];
37 disabledTestPaths = [ "samples" ];
39 pythonImportsCheck = [ "Registry" ];
42 description = "Module to parse the Windows Registry hives";
43 homepage = "https://github.com/williballenthin/python-registry";
44 changelog = "https://github.com/williballenthin/python-registry/releases/tag/${version}";
45 license = licenses.asl20;