mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
34 lines
732 B
Nix
34 lines
732 B
Nix
{ lib
|
|
, 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;
|
|
};
|
|
|
|
}
|