mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 14:47:06 +00:00
17 lines
346 B
Nix
17 lines
346 B
Nix
|
{ stdenv, buildPythonPackage, fetchPypi
|
||
|
, cookies, mock, requests, six }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "responses";
|
||
|
version = "0.4.0";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "0fs7a4cf4f12mjhcjd5vfh0f3ixcy2nawzxpgsfr3ahf0rg7ppx5";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ cookies mock requests six ];
|
||
|
|
||
|
doCheck = false;
|
||
|
}
|