Skip to content

Commit

Permalink
Merge pull request NixOS#261361 from fabaff/celery-types-bump
Browse files Browse the repository at this point in the history
python311Packages.celery-types: 0.19.0 -> 0.20.0
  • Loading branch information
NickCao authored Oct 16, 2023
2 parents 9b3995e + c0e9c75 commit d333281
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions pkgs/development/python-modules/celery-types/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{ lib
, buildPythonPackage
, fetchpatch
, fetchPypi
, poetry-core
, pythonOlder
Expand All @@ -9,26 +8,16 @@

buildPythonPackage rec {
pname = "celery-types";
version = "0.19.0";
version = "0.20.0";
format = "pyproject";

disabled = pythonOlder "3.10";

src = fetchPypi {
inherit pname version;
hash = "sha256-1OLUJxsuxG/sCKDxKiU4i7o5HyaJdIW8rPo8UofMI28=";
hash = "sha256-5cdiVVYF7QWSuu2dUZIwBGzo56EcZ6ghVVwIt87OGWA=";
};

patches = [
# remove extraneous build dependencies:
# https://github.com/sbdchd/celery-types/pull/138
(fetchpatch {
name = "clean-up-build-dependencies.patch";
url = "https://github.com/sbdchd/celery-types/commit/ff83f06a0302084e1a690e2a5a8b25f2c0dfc6e7.patch";
hash = "sha256-c68SMugg6Qk88FC842/czoxLpk0uVAVSlWsvo4NI9uo=";
})
];

propagatedBuildInputs = [
typing-extensions
];
Expand Down

0 comments on commit d333281

Please sign in to comment.