forked from mirrors/nixpkgs
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
35 lines
713 B
Nix
35 lines
713 B
Nix
{ lib, buildPythonPackage, fetchPypi, python
|
|
, mock
|
|
, purl
|
|
, requests
|
|
, six
|
|
, testrepository
|
|
, testtools
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "requests-mock";
|
|
version = "1.10.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-WcnDJBmp+xroPsJC2Y6InEW9fXpl1IN1zCQ+wIRBZYs=";
|
|
};
|
|
|
|
patchPhase = ''
|
|
sed -i 's@python@${python.interpreter}@' .testr.conf
|
|
'';
|
|
|
|
propagatedBuildInputs = [ requests six ];
|
|
|
|
nativeCheckInputs = [ mock purl testrepository testtools pytest ];
|
|
|
|
meta = with lib; {
|
|
description = "Mock out responses from the requests package";
|
|
homepage = "https://requests-mock.readthedocs.io";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|