159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
black,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
hypothesis,
|
|
lark,
|
|
libcst,
|
|
parso,
|
|
pytestCheckHook,
|
|
pytest-cov-stub,
|
|
pytest-xdist,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hypothesmith";
|
|
version = "0.3.3";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-lsFIAtbI6F2JdSZBdoeNtUso0u2SH9v+3C5rjOPIFxY=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
hypothesis
|
|
lark
|
|
libcst
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
black
|
|
parso
|
|
pytestCheckHook
|
|
pytest-cov-stub
|
|
pytest-xdist
|
|
];
|
|
|
|
disabledTests = [
|
|
# super slow
|
|
"test_source_code_from_libcst_node_type"
|
|
];
|
|
|
|
pythonImportsCheck = [ "hypothesmith" ];
|
|
|
|
meta = with lib; {
|
|
description = "Hypothesis strategies for generating Python programs, something like CSmith";
|
|
homepage = "https://github.com/Zac-HD/hypothesmith";
|
|
changelog = "https://github.com/Zac-HD/hypothesmith/blob/master/CHANGELOG.md";
|
|
license = licenses.mpl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|