nixpkgs/pkgs/development/python-modules/glom/default.nix

39 lines
850 B
Nix
Raw Normal View History

2018-12-31 17:05:32 +00:00
{ stdenv
, buildPythonPackage
, fetchPypi
, boltons
, attrs
, face
, pytest
, pyyaml
, isPy37
}:
buildPythonPackage rec {
pname = "glom";
2019-10-24 07:47:31 +01:00
version = "19.2.0";
2018-12-31 17:05:32 +00:00
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:31 +01:00
sha256 = "c277f34e5e498834a63c2114a25a6c67b5cf0b92f96bb65cba063d861c3d1da6";
2018-12-31 17:05:32 +00:00
};
propagatedBuildInputs = [ boltons attrs face ];
checkInputs = [ pytest pyyaml ];
checkPhase = "pytest glom/test";
doCheck = !isPy37; # https://github.com/mahmoud/glom/issues/72
meta = with stdenv.lib; {
homepage = https://github.com/mahmoud/glom;
description = "Restructuring data, the Python way";
longDescription = ''
glom helps pull together objects from other objects in a
declarative, dynamic, and downright simple way.
'';
license = licenses.bsd3;
maintainers = with maintainers; [ twey ];
};
}