depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-quickcheck/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

31 lines
714 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pytest-flakes
, tox
}:
buildPythonPackage rec {
pname = "pytest-quickcheck";
version = "0.9.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-UFF8ldnaImXU6al4kGjf720mbwXE6Nut9VlvNVrMVoY=";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ pytest-flakes tox ];
meta = with lib; {
license = licenses.asl20;
homepage = "https://pypi.python.org/pypi/pytest-quickcheck";
description = "pytest plugin to generate random data inspired by QuickCheck";
maintainers = with maintainers; [ onny ];
# Pytest support > 6.0 missing
# https://github.com/t2y/pytest-quickcheck/issues/17
broken = true;
};
}