summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiowinreg/default.nix
blob: 17d9160ce56b3cf480a214eda3d92d3d2c420f1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, winacl
}:

buildPythonPackage rec {
  pname = "aiowinreg";
  version = "0.0.5";

  disabled = pythonOlder "3.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "096663ec3db35fdc7ccc1c2d0d64a11cf64f4baa48955088e42b6a649ce418a5";
  };

  propagatedBuildInputs = [ 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 ];
  };
}