depot/third_party/nixpkgs/pkgs/development/python-modules/nocasedict/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

36 lines
663 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytest7CheckHook
, six
}:
buildPythonPackage rec {
pname = "nocasedict";
version = "2.0.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-lgy2mfEgnagKw546tQqnNC/oyp9wYGwjRHpRBVBDXlA=";
};
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 ];
};
}