depot/third_party/nixpkgs/pkgs/development/python-modules/nocasedict/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

36 lines
663 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytest7CheckHook
, six
}:
buildPythonPackage rec {
pname = "nocasedict";
version = "2.0.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-HJImx/WoqXrVHcsK4xV6cg4/fLnEVo0i6joF4/hWWKk=";
};
propagatedBuildInputs = [
six
];
nativeCheckInputs = [
pytest7CheckHook
];
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 ];
};
}