python310Packages.trove-classifiers: init at 2022.12.1

This commit is contained in:
Robert Schütz 2022-12-09 13:10:37 -08:00 committed by Robert Schütz
parent 95c657b15f
commit 6de86a0981
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, fetchPypi
, calver
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "trove-classifiers";
version = "2022.12.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "8eccd9c075038ef2ec73276e2422d0dbf4d632f9133f029632d0df35374caf77";
};
nativeBuildInputs = [
calver
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "trove_classifiers" ];
meta = {
description = "Canonical source for classifiers on PyPI";
homepage = "https://github.com/pypa/trove-classifiers";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}

View File

@ -11360,6 +11360,8 @@ self: super: with self; {
troposphere = callPackage ../development/python-modules/troposphere { };
trove-classifiers = callPackage ../development/python-modules/trove-classifiers { };
trueskill = callPackage ../development/python-modules/trueskill { };
trustme = callPackage ../development/python-modules/trustme { };