python3Packages.nocaselist: init at 1.0.3
This commit is contained in:
parent
4f322b7ef5
commit
eaf730c4f8
28
pkgs/development/python-modules/nocaselist/default.nix
Normal file
28
pkgs/development/python-modules/nocaselist/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4105,6 +4105,8 @@ in {
|
|||||||
|
|
||||||
nmigen-soc = callPackage ../development/python-modules/nmigen-soc { };
|
nmigen-soc = callPackage ../development/python-modules/nmigen-soc { };
|
||||||
|
|
||||||
|
nocaselist = callPackage ../development/python-modules/nocaselist { };
|
||||||
|
|
||||||
nodeenv = callPackage ../development/python-modules/nodeenv { };
|
nodeenv = callPackage ../development/python-modules/nodeenv { };
|
||||||
|
|
||||||
node-semver = callPackage ../development/python-modules/node-semver { };
|
node-semver = callPackage ../development/python-modules/node-semver { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user