mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
python3Packages.nocasedict: init at 1.0.1
This commit is contained in:
parent
eaf730c4f8
commit
33c26604ae
28
pkgs/development/python-modules/nocasedict/default.nix
Normal file
28
pkgs/development/python-modules/nocasedict/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user