nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.python-opendata-transport: refactor

+4 -4
+4 -4
pkgs/development/python-modules/python-opendata-transport/default.nix
··· 13 13 version = "0.5.0"; 14 14 pyproject = true; 15 15 16 - disabled = pythonOlder "3.9"; 16 + disabled = pythonOlder "3.11"; 17 17 18 18 src = fetchPypi { 19 19 pname = "python_opendata_transport"; ··· 21 21 hash = "sha256-CtYsks7Q33ww0Mr9ehhq7+fJhCsj4gxKytiCZ6G4Aqc="; 22 22 }; 23 23 24 - nativeBuildInputs = [ setuptools ]; 24 + build-system = [ setuptools ]; 25 25 26 - propagatedBuildInputs = [ 26 + dependencies = [ 27 27 aiohttp 28 28 urllib3 29 29 ]; ··· 37 37 description = "Python client for interacting with transport.opendata.ch"; 38 38 homepage = "https://github.com/home-assistant-ecosystem/python-opendata-transport"; 39 39 changelog = "https://github.com/home-assistant-ecosystem/python-opendata-transport/releases/tag/${version}"; 40 - license = with licenses; [ mit ]; 40 + license = licenses.mit; 41 41 maintainers = with maintainers; [ fab ]; 42 42 }; 43 43 }