Skip to content

Commit

Permalink
python3Packages.nocaselist: init at 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
freezeboy authored and Jonathan Ringer committed Nov 23, 2020
1 parent 4f322b7 commit eaf730c
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/development/python-modules/nocaselist/default.nix
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit eaf730c

Please sign in to comment.