4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
53 lines
1.3 KiB
Nix
53 lines
1.3 KiB
Nix
{ lib, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, tornado
|
|
, requests
|
|
, httplib2
|
|
, sure
|
|
, nose
|
|
, nose-exclude
|
|
, coverage
|
|
, rednose
|
|
, nose-randomly
|
|
, six
|
|
, mock
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "httpretty";
|
|
version = "0.9.7";
|
|
|
|
# drop this for version > 0.9.7
|
|
# Flaky tests: https://github.com/gabrielfalcao/HTTPretty/pull/394
|
|
doCheck = stdenv.lib.versionAtLeast version "0.9.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "66216f26b9d2c52e81808f3e674a6fb65d4bf719721394a1a9be926177e55fbe";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
checkInputs = [ nose sure coverage mock rednose
|
|
# Following not declared in setup.py
|
|
nose-randomly requests tornado httplib2 nose-exclude
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
# Those flaky tests are failing intermittently on all platforms
|
|
NOSE_EXCLUDE = stdenv.lib.concatStringsSep "," [
|
|
"tests.functional.test_httplib2.test_callback_response"
|
|
"tests.functional.test_requests.test_streaming_responses"
|
|
"tests.functional.test_httplib2.test_callback_response"
|
|
"tests.functional.test_requests.test_httpretty_should_allow_adding_and_overwritting_by_kwargs_u2"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://httpretty.readthedocs.org/";
|
|
description = "HTTP client request mocking tool";
|
|
license = licenses.mit;
|
|
};
|
|
}
|