Unverified Commit 48378ee5 authored by Raghav Sood's avatar Raghav Sood Committed by GitHub
Browse files

Merge pull request #311571 from fabaff/pyzufall-remove

python311Packages.pyzufall: remove
parents 62db6bb2 1015d9f6
Loading
Loading
Loading
Loading
+0 −30
Original line number Diff line number Diff line
{ lib, fetchPypi, python, buildPythonPackage, nose, future, coverage }:

buildPythonPackage rec {
  pname = "pyzufall";
  version = "0.13.2";

  src = fetchPypi {
    pname = "PyZufall";
    inherit version;
    sha256 = "1jffhi20m82fdf78bjhncbdxkfzcskrlipxlrqq9741xdvrn14b5";
  };

  # disable tests due to problem with nose
  # https://github.com/nose-devs/nose/issues/1037
  doCheck = false;

  nativeCheckInputs = [ nose coverage ];
  propagatedBuildInputs = [ future ];

  checkPhase = ''
    ${python.interpreter} setup.py nosetests
  '';

  meta = with lib; {
    homepage = "https://pyzufall.readthedocs.io/de/latest/";
    description = "Library for generating random data and sentences in german language";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ davidak ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -433,6 +433,7 @@ mapAliases ({
  PyVirtualDisplay = pyvirtualdisplay; # added 2023-02-19
  pywick = throw "pywick has been removed, since it is no longer maintained"; # added 2023-07-01
  pyxb = throw "pyxb has been removed, its last release was in 2017 and it has finally been archived in April 2023."; # added 2024-01-05
  pyzufall =  throw "pyzufall was removed, because it is no longer maintained"; # added 2024-05-14
  qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09
  qds_sdk = qds-sdk; # added 2023-10-21
  Quandl = quandl; # added 2023-02-19
+0 −2
Original line number Diff line number Diff line
@@ -12824,8 +12824,6 @@ self: super: with self; {
  pyzmq = callPackage ../development/python-modules/pyzmq { };
  pyzufall = callPackage ../development/python-modules/pyzufall { };
  qbittorrent-api = callPackage ../development/python-modules/qbittorrent-api { };
  qasync = callPackage ../development/python-modules/qasync { };