Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / prodict / default.nix
blobe3cc7564ef8b835a5c89b95b4fef26b4e51eb1a7
1 { buildPythonPackage
2 , fetchFromGitHub
3 , pythonOlder
4 , pytestCheckHook
5 , lib
6 }:
8 buildPythonPackage rec {
9   pname   = "prodict";
10   version = "0.8.6";
11   disabled = pythonOlder "3.7";
13   src = fetchFromGitHub {
14     owner = "ramazanpolat";
15     repo = pname;
16     rev = version;
17     hash = "sha256-c46JEQFg4KRwerqpMSgh6+tYRpKTOX02Lzsq4/meS3o=";
18   };
20   # make setuptools happy on case-sensitive filesystems
21   postPatch = ''if [[ ! -f README.md ]]; then mv README.MD README.md; fi'';
23   nativeCheckInputs = [
24     pytestCheckHook
25   ];
27   pythonImportsCheck = [ "prodict" ];
29   meta = {
30     description = "Access Python dictionary as a class with type hinting and autocompletion";
31     homepage = "https://github.com/ramazanpolat/prodict";
32     license = lib.licenses.mit;
33     maintainers = with lib.maintainers; [ bcdarwin ];
34   };