python312Packages.mscerts: refactor

This commit is contained in:
Fabian Affolter 2024-03-27 20:10:14 +01:00
parent 9eb85af930
commit 99fc3b19ba

View File

@ -2,12 +2,13 @@
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, pythonOlder , pythonOlder
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "mscerts"; pname = "mscerts";
version = "2024.3.27"; version = "2024.3.27";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -18,6 +19,10 @@ buildPythonPackage rec {
hash = "sha256-Hucf3tToYm3P6ebKNlUs5V+X1B95u9P2UC1yOItZOhc="; hash = "sha256-Hucf3tToYm3P6ebKNlUs5V+X1B95u9P2UC1yOItZOhc=";
}; };
build-system = [
setuptools
];
# extras_require contains signify -> circular dependency # extras_require contains signify -> circular dependency
# Module has no tests # Module has no tests