lol

python311Packages.celery-types: 0.19.0 -> 0.20.0

+2 -13
+2 -13
pkgs/development/python-modules/celery-types/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchpatch 4 3 , fetchPypi 5 4 , poetry-core 6 5 , pythonOlder ··· 9 8 10 9 buildPythonPackage rec { 11 10 pname = "celery-types"; 12 - version = "0.19.0"; 11 + version = "0.20.0"; 13 12 format = "pyproject"; 14 13 15 14 disabled = pythonOlder "3.10"; 16 15 17 16 src = fetchPypi { 18 17 inherit pname version; 19 - hash = "sha256-1OLUJxsuxG/sCKDxKiU4i7o5HyaJdIW8rPo8UofMI28="; 18 + hash = "sha256-5cdiVVYF7QWSuu2dUZIwBGzo56EcZ6ghVVwIt87OGWA="; 20 19 }; 21 - 22 - patches = [ 23 - # remove extraneous build dependencies: 24 - # https://github.com/sbdchd/celery-types/pull/138 25 - (fetchpatch { 26 - name = "clean-up-build-dependencies.patch"; 27 - url = "https://github.com/sbdchd/celery-types/commit/ff83f06a0302084e1a690e2a5a8b25f2c0dfc6e7.patch"; 28 - hash = "sha256-c68SMugg6Qk88FC842/czoxLpk0uVAVSlWsvo4NI9uo="; 29 - }) 30 - ]; 31 20 32 21 propagatedBuildInputs = [ 33 22 typing-extensions