Files
nixpkgs/pkgs/development/python-modules/pyasn1-modules/default.nix
T
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

43 lines
852 B
Nix

{ 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 = "A 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; [ ];
};
}