···6363 gputils
6464 ];
65656666+ # sdcc 4.5.0 massively rewrote sim/ucsim/Makefile.in, and lost the `.PHONY`
6767+ # rule in the process. As a result, on macOS (which uses a case-insensitive
6868+ # filesystem), the INSTALL file keeps the `install` target in the ucsim
6969+ # directory from running. Nothing else creates the `man` output, causing the
7070+ # entire build to fail.
7171+ #
7272+ # TODO: remove this when updating to the next release - it's been fixed in
7373+ # upstream sdcc r15384 <https://sourceforge.net/p/sdcc/code/15384/>.
7474+7575+ postPatch = ''
7676+ if grep -q '\.PHONY:.*install' sim/ucsim/Makefile.in; then
7777+ echo 'Upstream has added `.PHONY: install` rule; must remove `postPatch` from the Nix file.' >&2
7878+ exit 1
7979+ fi
8080+ echo '.PHONY: install' >> sim/ucsim/Makefile.in
8181+ '';
8282+6683 configureFlags =
6784 let
6885 excludedPorts =
···11-{
22- lib,
33- buildPythonPackage,
44- fetchPypi,
55-}:
66-77-buildPythonPackage rec {
88- pname = "sabyenc";
99- version = "3.3.6";
1010- format = "setuptools";
1111-1212- src = fetchPypi {
1313- inherit pname version;
1414- sha256 = "1qbymi1626mmcxnsqdwnz2krxg7jvl4qbh8nwjj54z2p681wvjm4";
1515- };
1616-1717- # tests are not included in pypi distribution
1818- doCheck = false;
1919-2020- meta = {
2121- description = "Python yEnc package optimized for use within SABnzbd";
2222- homepage = "https://github.com/sabnzbd/sabyenc/";
2323- license = lib.licenses.lgpl3;
2424- maintainers = [ lib.maintainers.georgewhewell ];
2525- };
2626-}
+1
pkgs/top-level/python-aliases.nix
···686686 ruff-lsp = throw "ruff-lsp has been deprecated, use `ruff server` instead"; # added 2025-04-21
687687 runway-python = throw "SDK has been deprecated and was archived by upstream"; # added 2023-05-03
688688 safe = throw "safe has been removed, it was unmaintained sinced October 2019"; # added 2024-07-28
689689+ sabyenc = throw "sabyenc has been removed, due to no updates since June 2019 and being superseded by sabyenc3"; # added 2025-05-03
689690 sampledata = throw "sampledata has been removed, it was unmaintained since 2017"; # added 2024-07-27
690691 sapi-python-client = kbcstorage; # added 2022-04-20
691692 scikitimage = scikit-image; # added 2023-05-14