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
34 lines
740 B
Nix
34 lines
740 B
Nix
{ lib, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, repeated_test
|
|
, sphinx
|
|
, mock
|
|
, coverage
|
|
, unittest2
|
|
, funcsigs
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sigtools";
|
|
version = "2.0.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1b890f22ece64bc47d3d4e84c950581e83917794a6cf1548698145590e221aff";
|
|
};
|
|
|
|
buildInputs = [ repeated_test sphinx mock coverage unittest2 ];
|
|
propagatedBuildInputs = [ funcsigs six ];
|
|
|
|
patchPhase = ''sed -i s/test_suite="'"sigtools.tests"'"/test_suite="'"unittest2.collector"'"/ setup.py'';
|
|
|
|
meta = with lib; {
|
|
description = "Utilities for working with 3.3's inspect.Signature objects.";
|
|
homepage = "https://pypi.python.org/pypi/sigtools";
|
|
license = licenses.mit;
|
|
};
|
|
|
|
}
|