about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyasn1-modules/default.nix
blob: ed555556f84fb80059377c65d1c9ac6a156416ed (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
32
33
34
35
36
37
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pyasn1,
  pytestCheckHook,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "pyasn1-modules";
  version = "0.3.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "pyasn1";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-AAS1VuppCIxgswpLSHFAc6q9cyJBLpdDuU9D1KU13vg=";
  };

  propagatedBuildInputs = [ pyasn1 ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "pyasn1_modules" ];

  meta = with lib; {
    description = "Collection of ASN.1-based protocols modules";
    homepage = "https://github.com/pyasn1/pyasn1-modules";
    changelog = "https://github.com/pyasn1/pyasn1-modules/releases/tag/v${version}";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ];
  };
}