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

python310Packages.aio-geojson-client: 0.17 -> 0.18

Changelog: https://github.com/exxamalte/python-aio-geojson-client/blob/v0.18/CHANGELOG.md

+2 -12
+2 -12
pkgs/development/python-modules/aio-geojson-client/default.nix
··· 3 3 , aresponses 4 4 , buildPythonPackage 5 5 , fetchFromGitHub 6 - , fetchpatch 7 6 , geojson 8 7 , haversine 9 8 , mock ··· 13 14 14 15 buildPythonPackage rec { 15 16 pname = "aio-geojson-client"; 16 - version = "0.17"; 17 + version = "0.18"; 17 18 format = "setuptools"; 18 19 19 20 disabled = pythonOlder "3.7"; ··· 22 23 owner = "exxamalte"; 23 24 repo = "python-aio-geojson-client"; 24 25 rev = "refs/tags/v${version}"; 25 - hash = "sha256-5GiQgtbvYeleovFbXO2vlr2XPsDIWZiElM64O+urMcY="; 26 + hash = "sha256-nvfy1XLiMjyCiQo/YuzRbDtxGmAUAiq8UJwS/SkN3oM="; 26 27 }; 27 - 28 - patches = [ 29 - # Remove asynctest, https://github.com/exxamalte/python-aio-geojson-client/pull/35 30 - (fetchpatch { 31 - name = "remove-asynctest.patch"; 32 - url = "https://github.com/exxamalte/python-aio-geojson-client/commit/bf617d9898a99b026b43b28bd87bb6479f518c0a.patch"; 33 - hash = "sha256-uomH3LCaklfGURDs8SsnvNyHkubbe+5dleLEjW+I+M4="; 34 - }) 35 - ]; 36 28 37 29 propagatedBuildInputs = [ 38 30 aiohttp