4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
38 lines
857 B
Nix
38 lines
857 B
Nix
{ lib, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, boltons
|
|
, attrs
|
|
, face
|
|
, pytest
|
|
, pyyaml
|
|
, isPy37
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "glom";
|
|
version = "20.11.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "54051072bccc9cdb3ebbd8af0559195137a61d308f04bff19678e4b61350eb12";
|
|
};
|
|
|
|
propagatedBuildInputs = [ boltons attrs face ];
|
|
|
|
checkInputs = [ pytest pyyaml ];
|
|
# test_cli.py checks the output of running "glom"
|
|
checkPhase = "PATH=$out/bin:$PATH pytest glom/test";
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|