Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 16 lines 351 B view raw
1{ buildPythonPackage, fetchPypi 2, cookies, mock, requests, six }: 3 4buildPythonPackage rec { 5 pname = "responses"; 6 version = "0.10.6"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "502d9c0c8008439cfcdef7e251f507fcfdd503b56e8c0c87c3c3e3393953f790"; 11 }; 12 13 propagatedBuildInputs = [ cookies mock requests six ]; 14 15 doCheck = false; 16}