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.smpp-pdu: standardize version name, add updateScript

Prevents spurious robot PRs.

No, this isn't a downgrade, just a timezone thing.

+6 -1
+6 -1
pkgs/development/python-modules/smpp-pdu/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 + nix-update-script, 5 6 pytestCheckHook, 6 7 setuptools, 7 8 }: 8 9 9 10 buildPythonPackage { 10 11 pname = "smpp-pdu"; 11 - version = "unstable-2022-09-02"; 12 + version = "0.3-unstable-2022-09-01"; 12 13 format = "pyproject"; 13 14 14 15 # Upstream was once mozes/smpp.pdu, but it's dead and Python 2 only. ··· 25 24 nativeCheckInputs = [ pytestCheckHook ]; 26 25 27 26 pythonImportsCheck = [ "smpp.pdu" ]; 27 + 28 + passthru.updateScript = nix-update-script { 29 + extraArgs = [ "--version=branch" ]; 30 + }; 28 31 29 32 meta = with lib; { 30 33 description = "Library for parsing Protocol Data Units (PDUs) in SMPP protocol";