mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
setuptools,
|
|
pyasn1,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyasn1-modules";
|
|
version = "0.4.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pyasn1";
|
|
repo = "pyasn1-modules";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-7tCmhADC8LuswonL4QQ01/DD0RzeRLFJrsU49On4fqY=";
|
|
};
|
|
|
|
patches = [
|
|
# Stop using pyasn1.compat.octets, https://github.com/pyasn1/pyasn1-modules/pull/22
|
|
(fetchpatch {
|
|
name = "pyasn1-compat.patch";
|
|
url = "https://github.com/pyasn1/pyasn1-modules/commit/079c176eb00ed7352c9696efa12a0577beeecd71.patch";
|
|
hash = "sha256-k/7P0RnhK57BUFZFFBDyFvroFF9lhonNhD/XXNGoiMk=";
|
|
})
|
|
];
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|