Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 33 lines 639 B view raw
1{ lib 2, aiohttp 3, buildPythonPackage 4, fetchPypi 5, pythonOlder 6}: 7 8buildPythonPackage rec { 9 pname = "aioymaps"; 10 version = "1.1.0"; 11 disabled = pythonOlder "3.6"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "1rvgf4flvnpjj0sm14xlnfmmnlmkz6xq5h5mfb14amkfy76za3jm"; 16 }; 17 18 propagatedBuildInputs = [ 19 aiohttp 20 ]; 21 22 # Project has no tests 23 doCheck = false; 24 25 pythonImportsCheck = [ "aioymaps" ]; 26 27 meta = with lib; { 28 description = "Python package fetch data from Yandex maps"; 29 homepage = "https://github.com/devbis/aioymaps"; 30 license = licenses.mit; 31 maintainers = with maintainers; [ fab ]; 32 }; 33}