1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-20 21:17:46 +00:00
nixpkgs/pkgs/development/python-modules/glom/default.nix

39 lines
852 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";
2020-08-16 18:31:00 +01:00
version = "20.8.0";
2018-12-31 17:05:32 +00:00
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:00 +01:00
sha256 = "5fa3a9d99c7f3e5410a810fa8a158c0f71e39036c47b77745c7f2e4630372f82";
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";
2018-12-31 17:05:32 +00:00
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 ];
};
}