python3Packages.fixerio: 0.1.1 -> 1.0.0-alpha

This commit is contained in:
Martin Weinelt 2021-02-03 00:54:13 +01:00
parent 078e37f324
commit f22c637c93
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -4,23 +4,20 @@
, requests
, pytestCheckHook
, httpretty
, responses
}:
buildPythonPackage rec {
pname = "fixerio";
version = "0.1.1";
version = "1.0.0-alpha";
src = fetchFromGitHub {
owner = "amatellanes";
repo = pname;
rev = "v${version}";
sha256 = "1k9ss5jc7sbpkjd2774vbmvljny0wm2lrc8155ha8yk2048jsaxk";
sha256 = "009h1mys175xdyznn5bl980vly40544s4ph1zcgqwg2i2ic93gvb";
};
postPatch = ''
substituteInPlace setup.py --replace "requests==2.10.0" "requests"
'';
propagatedBuildInputs = [
requests
];
@ -28,6 +25,17 @@ buildPythonPackage rec {
checkInputs = [
httpretty
pytestCheckHook
responses
];
disabledTests = [
# tests require network access
"test_returns_historical_rates_for_symbols_passed_if_both"
"test_returns_historical_rates_for_symbols_passed_in_constructor"
"test_returns_historical_rates_for_symbols_passed_in_method"
"test_returns_latest_rates_for_symbols_passed_in_constructor"
"test_returns_latest_rates_for_symbols_passed_in_method"
"test_returns_latest_rates_for_symbols_passed_in_method_if_both"
];
pythonImportsCheck = [ "fixerio" ];