python3Packages.nocaselist: init at 1.0.3

This commit is contained in:
freezeboy 2020-10-31 22:46:56 +01:00 committed by Jonathan Ringer
parent 4f322b7ef5
commit eaf730c4f8
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib, buildPythonPackage, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "nocaselist";
version = "1.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "fm3st9hVY7kESRPJCH70tpG8PaTXrR2IlozepAlVMyY=";
};
checkInputs = [
pytest
];
pythonImportsCheck = [
"nocaselist"
];
meta = with lib; {
description = "A case-insensitive list for Python";
homepage = "https://github.com/pywbem/nocaselist";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ freezeboy ];
};
}

View file

@ -4105,6 +4105,8 @@ in {
nmigen-soc = callPackage ../development/python-modules/nmigen-soc { };
nocaselist = callPackage ../development/python-modules/nocaselist { };
nodeenv = callPackage ../development/python-modules/nodeenv { };
node-semver = callPackage ../development/python-modules/node-semver { };