Merge pull request #32902 from lsix/update_pytestquickcheck

pythonPackages.pytest-quickcheck: 0.8.2 -> 0.8.3

authored by Orivej Desh and committed by GitHub c2b8cf03 e17e2bcb

+21 -17
+20
pkgs/development/python-modules/pytest-quickcheck/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, pytest, pytestflakes, pytestpep8, tox }: 2 + buildPythonPackage rec { 3 + pname = "pytest-quickcheck"; 4 + version = "0.8.3"; 5 + name = "${pname}-${version}"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "17vly6fg0s95lbg620g9dp9jjf12sj4hpbi7cg579kswabl6304g"; 10 + }; 11 + 12 + buildInputs = [ pytest ]; 13 + propagatedBuildInputs = [ pytestflakes pytestpep8 tox ]; 14 + 15 + meta = with stdenv.lib; { 16 + license = licenses.asl20; 17 + homepage = "https://pypi.python.org/pypi/pytest-quickcheck"; 18 + description = "pytest plugin to generate random data inspired by QuickCheck"; 19 + }; 20 + }
+1 -17
pkgs/top-level/python-packages.nix
··· 3671 3671 doCheck = false; 3672 3672 }; 3673 3673 3674 - pytestquickcheck = buildPythonPackage rec { 3675 - name = "pytest-quickcheck-0.8.2"; 3676 - 3677 - src = pkgs.fetchurl { 3678 - url = "mirror://pypi/p/pytest-quickcheck/pytest-quickcheck-0.8.2.tar.gz"; 3679 - sha256 = "047w4zwdsnlzmsc5f3rapzbzd2frlvz9nnp8v4b48fjmqmxassh3"; 3680 - }; 3681 - 3682 - buildInputs = with self; [ pytest ]; 3683 - propagatedBuildInputs = with self; [ pytestflakes pytestpep8 tox ]; 3684 - 3685 - meta = { 3686 - license = licenses.asl20; 3687 - homepage = "https://pypi.python.org/pypi/pytest-quickcheck"; 3688 - description = "pytest plugin to generate random data inspired by QuickCheck"; 3689 - }; 3690 - }; 3674 + pytestquickcheck = callPackage ../development/python-modules/pytest-quickcheck { }; 3691 3675 3692 3676 pytest-server-fixtures = buildPythonPackage rec { 3693 3677 name = "${pname}-${version}";