summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-20 23:08:40 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-21 13:32:51 +0200
commitdd712027be98a6d782fc9cb492f557bb48e3dd31 (patch)
tree28471e33f51ef70227c098f8901b83485e8d7cb1 /pkgs
parent9bfdf57e139e7e3b253979da828285bb8284a217 (diff)
downloadnixpkgs-dd712027be98a6d782fc9cb492f557bb48e3dd31.tar
nixpkgs-dd712027be98a6d782fc9cb492f557bb48e3dd31.tar.gz
nixpkgs-dd712027be98a6d782fc9cb492f557bb48e3dd31.tar.bz2
nixpkgs-dd712027be98a6d782fc9cb492f557bb48e3dd31.tar.lz
nixpkgs-dd712027be98a6d782fc9cb492f557bb48e3dd31.tar.xz
nixpkgs-dd712027be98a6d782fc9cb492f557bb48e3dd31.tar.zst
nixpkgs-dd712027be98a6d782fc9cb492f557bb48e3dd31.zip
pythonPackages: deprecate pytestquickcheck alias
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-aliases.nix1
-rw-r--r--pkgs/top-level/python-packages.nix3
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix
index 7e74bce1f7b..8c11398d6b9 100644
--- a/pkgs/top-level/python-aliases.nix
+++ b/pkgs/top-level/python-aliases.nix
@@ -55,6 +55,7 @@ mapAliases ({
   pytestcov = pytest-cov; # added 2021-01-04
   pytest-pep8 = pytestpep8; # added 2021-01-04
   pytestpep8 = throw "pytestpep8 was removed because it is abandoned and no longer compatible with pytest v6.0"; # added 2020-12-10
+  pytestquickcheck = pytest-quickcheck; # added 2021-07-20
   pytestrunner = pytest-runner; # added 2021-01-04
   qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09
   rotate-backups = throw "pythonPackages.rotate-backups was removed in favor of the top-level rotate-backups"; # added 2021-07-01
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 3a811bc9b7d..640f1fdc252 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -6862,8 +6862,7 @@ in {
 
   pytest-qt = callPackage ../development/python-modules/pytest-qt { };
 
-  pytest-quickcheck = self.pytestquickcheck;
-  pytestquickcheck = callPackage ../development/python-modules/pytest-quickcheck { };
+  pytest-quickcheck = callPackage ../development/python-modules/pytest-quickcheck { };
 
   pytest-raises = callPackage ../development/python-modules/pytest-raises { };