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

Configure Feed

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

python3Packages.zope-lifecycleevent: 5.0 -> 5.1

https://github.com/zopefoundation/zope.lifecycleevent/blob/5.1/CHANGES.rst

This commit was automatically generated using update-python-libraries.

+13 -7
+13 -7
pkgs/development/python-modules/zope-lifecycleevent/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 - fetchPypi, 4 + fetchFromGitHub, 5 5 setuptools, 6 6 zope-event, 7 7 zope-interface, ··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "zope-lifecycleevent"; 15 - version = "5.0"; 15 + version = "5.1"; 16 16 pyproject = true; 17 17 18 - src = fetchPypi { 19 - pname = "zope.lifecycleevent"; 20 - inherit version; 21 - hash = "sha256-6tP7SW52FPm1adFtrUt4BSsKwhh1utjWbKNQNS2bb50="; 18 + src = fetchFromGitHub { 19 + owner = "zopefoundation"; 20 + repo = "zope.lifecycleevent"; 21 + tag = version; 22 + hash = "sha256-vTonbZSeQxnLA6y1wAnBpobEKAs+gaAYN25dx5Fla9k="; 22 23 }; 24 + 25 + postPatch = '' 26 + substituteInPlace pyproject.toml \ 27 + --replace-fail "setuptools <= 75.6.0" setuptools 28 + ''; 23 29 24 30 build-system = [ setuptools ]; 25 31 ··· 52 46 meta = { 53 47 homepage = "https://github.com/zopefoundation/zope.lifecycleevent"; 54 48 description = "Object life-cycle events"; 55 - changelog = "https://github.com/zopefoundation/zope.lifecycleevent/blob/${version}/CHANGES.rst"; 49 + changelog = "https://github.com/zopefoundation/zope.lifecycleevent/blob/${src.tag}/CHANGES.rst"; 56 50 license = lib.licenses.zpl21; 57 51 maintainers = [ ]; 58 52 };