01ed8ef136
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
35 lines
818 B
Nix
35 lines
818 B
Nix
{ buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, pytestCheckHook
|
|
, lib
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "prodict";
|
|
version = "0.8.6";
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ramazanpolat";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-c46JEQFg4KRwerqpMSgh6+tYRpKTOX02Lzsq4/meS3o=";
|
|
};
|
|
|
|
# make setuptools happy on case-sensitive filesystems
|
|
postPatch = ''if [[ ! -f README.md ]]; then mv README.MD README.md; fi'';
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "prodict" ];
|
|
|
|
meta = {
|
|
description = "Access Python dictionary as a class with type hinting and autocompletion";
|
|
homepage = "https://github.com/ramazanpolat/prodict";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ bcdarwin ];
|
|
};
|
|
}
|