forked from mirrors/nixpkgs
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
31 lines
745 B
Nix
31 lines
745 B
Nix
{ lib, stdenv, buildPythonPackage, fetchPypi
|
|
, six, pathpy, zetup, pytest
|
|
, decorator }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "moretools";
|
|
version = "0.1.12";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "73b0469d4f1df6d967508103473f0b1524708adbff71f8f90ef71d9a44226b22";
|
|
};
|
|
|
|
checkPhase = ''
|
|
py.test test
|
|
'';
|
|
|
|
nativeBuildInputs = [ zetup ];
|
|
checkInputs = [ six pathpy pytest ];
|
|
propagatedBuildInputs = [ decorator ];
|
|
|
|
meta = with lib; {
|
|
description = ''
|
|
Many more basic tools for python 2/3 extending itertools, functools, operator and collections
|
|
'';
|
|
homepage = "https://bitbucket.org/userzimmermann/python-moretools";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|