depot/third_party/nixpkgs/pkgs/development/python-modules/pyasn1-modules/default.nix

41 lines
850 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pyasn1,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pyasn1-modules";
version = "0.4.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "pyasn1";
repo = "pyasn1-modules";
rev = "refs/tags/v${version}";
hash = "sha256-UJycVfj08+3zjHPji5Qlh3yqeS30dEwu1pyrN1yo1Vc=";
};
build-system = [ setuptools ];
dependencies = [ pyasn1 ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pyasn1_modules" ];
meta = {
description = "Collection of ASN.1-based protocols modules";
homepage = "https://pyasn1.readthedocs.io";
changelog = "https://github.com/pyasn1/pyasn1-modules/releases/tag/v${version}";
license = lib.licenses.bsd2;
maintainers = [ ];
};
}