Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, aiohttp 3, aresponses 4, buildPythonPackage 5, fetchFromGitHub 6, pytestCheckHook 7, pytest-asyncio 8, pythonOlder 9}: 10 11buildPythonPackage rec { 12 pname = "pylaunches"; 13 version = "1.4.0"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.8"; 17 18 src = fetchFromGitHub { 19 owner = "ludeeus"; 20 repo = pname; 21 rev = version; 22 sha256 = "sha256-bIcnYcbfAwjet3cg97y+ujFfY2916ANk4sw0sZoU59g="; 23 }; 24 25 propagatedBuildInputs = [ 26 aiohttp 27 ]; 28 29 nativeCheckInputs = [ 30 aresponses 31 pytestCheckHook 32 pytest-asyncio 33 ]; 34 35 postPatch = '' 36 # Upstream doesn't set version in the repo 37 substituteInPlace setup.py \ 38 --replace 'version="main",' 'version="${version}",' \ 39 --replace ', "pytest-runner"' "" 40 ''; 41 42 pythonImportsCheck = [ 43 "pylaunches" 44 ]; 45 46 meta = with lib; { 47 description = "Python module to get information about upcoming space launches"; 48 homepage = "https://github.com/ludeeus/pylaunches"; 49 license = licenses.mit; 50 maintainers = with maintainers; [ fab ]; 51 }; 52}