linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / glom / default.nix
blob89f0de4749012165150ae17fa379f3611d5b9b6e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , boltons
5 , attrs
6 , face
7 , pytest
8 , pyyaml
9 , isPy37
12 buildPythonPackage rec {
13   pname = "glom";
14   version = "20.11.0";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "54051072bccc9cdb3ebbd8af0559195137a61d308f04bff19678e4b61350eb12";
19   };
21   propagatedBuildInputs = [ boltons attrs face ];
23   checkInputs = [ pytest pyyaml ];
24   # test_cli.py checks the output of running "glom"
25   checkPhase = "PATH=$out/bin:$PATH pytest glom/test";
27   meta = with lib; {
28     homepage = "https://github.com/mahmoud/glom";
29     description = "Restructuring data, the Python way";
30     longDescription = ''
31       glom helps pull together objects from other objects in a
32       declarative, dynamic, and downright simple way.
33     '';
34     license = licenses.bsd3;
35     maintainers = with maintainers; [ twey ];
36   };