nixpkgs-suyu/pkgs/development/python-modules/requests-mock/default.nix

22 lines
482 B
Nix
Raw Normal View History

{ buildPythonPackage, fetchPypi, python
, mock, testrepository, testtools
, requests, six }:
buildPythonPackage rec {
pname = "requests-mock";
2018-06-12 18:47:06 +02:00
version = "1.5.0";
src = fetchPypi {
inherit pname version;
2018-06-12 18:47:06 +02:00
sha256 = "a029fe6c5244963ef042c6224ff787049bfc5bab958a1b7e5b632ef0bbb05de4";
};
patchPhase = ''
sed -i 's@python@${python.interpreter}@' .testr.conf
'';
checkInputs = [ mock testrepository testtools ];
propagatedBuildInputs = [ requests six ];
}