nixpkgs/pkgs/development/python-modules/glom/default.nix
2019-10-27 16:26:42 +01:00

39 lines
850 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, boltons
, attrs
, face
, pytest
, pyyaml
, isPy37
}:
buildPythonPackage rec {
pname = "glom";
version = "19.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "c277f34e5e498834a63c2114a25a6c67b5cf0b92f96bb65cba063d861c3d1da6";
};
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 ];
};
}