nixpkgs/pkgs/development/python-modules/nocasedict/default.nix
2022-03-27 15:33:34 +00:00

29 lines
564 B
Nix

{ lib, buildPythonPackage, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "nocasedict";
version = "1.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-giC5e6BrCOst7e13TEBsd+DKDVNSrnEkn2+dHyoXvXs=";
};
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 ];
};
}