mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
54 lines
1.3 KiB
Nix
54 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, requests
|
|
, pytestCheckHook
|
|
, httpretty
|
|
, responses
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "fixerio";
|
|
version = "1.0.0-alpha";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "amatellanes";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "009h1mys175xdyznn5bl980vly40544s4ph1zcgqwg2i2ic93gvb";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
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" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python client for Fixer.io";
|
|
longDescription = ''
|
|
Fixer.io is a free JSON API for current and historical foreign
|
|
exchange rates published by the European Central Bank.
|
|
'';
|
|
homepage = "https://github.com/amatellanes/fixerio";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|