python3Packages.nocasedict: init at 1.0.1

This commit is contained in:
freezeboy 2020-10-31 22:47:43 +01:00 committed by Jonathan Ringer
parent eaf730c4f8
commit 33c26604ae
2 changed files with 30 additions and 0 deletions

View file

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

View file

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