15 buildPythonPackage rec {
16 pname = "aioopenexchangerates";
20 disabled = pythonOlder "3.11";
22 src = fetchFromGitHub {
23 owner = "MartinHjelmare";
24 repo = "aioopenexchangerates";
25 rev = "refs/tags/v${version}";
26 hash = "sha256-KFs5r7C7CorjEix2yL+NT/0liz3ivoiL6ZV5lJbBWBc=";
29 pythonRelaxDeps = [ "pydantic" ];
31 build-system = [ poetry-core ];
46 pythonImportsCheck = [ "aioopenexchangerates" ];
49 description = "Library for the Openexchangerates API";
50 homepage = "https://github.com/MartinHjelmare/aioopenexchangerates";
51 changelog = "https://github.com/MartinHjelmare/aioopenexchangerates/blob/v${version}/CHANGELOG.md";
52 license = with licenses; [ asl20 ];
53 maintainers = with maintainers; [ fab ];