1 { lib, buildPythonPackage, fetchPypi, hypothesis, lark-parser, libcst, black, parso, pytestCheckHook, pytest-cov, pytest-xdist }:
3 buildPythonPackage rec {
4 pname = "hypothesmith";
9 sha256 = "sha256-+f8EexXE7TEs49pX6idXD4bWtTzhKvnyXlnmV2oAQQo=";
12 propagatedBuildInputs = [ hypothesis lark-parser libcst ];
14 checkInputs = [ black parso pytestCheckHook pytest-cov pytest-xdist ];
16 pythonImportsCheck = [ "hypothesmith" ];
19 description = "Hypothesis strategies for generating Python programs, something like CSmith";
20 homepage = "https://github.com/Zac-HD/hypothesmith";
21 license = licenses.mpl20;
22 maintainers = with maintainers; [ SuperSandro2000 ];