9 buildPythonPackage rec {
13 src = fetchFromGitHub {
16 rev = "refs/tags/v${version}";
17 hash = "sha256-dunvcSi+nN5VruvRUPIEpkyUsmeS+kIYDfS8ibDR96s=";
20 propagatedBuildInputs = [
30 substituteInPlace pytest.ini \
31 --replace "--metadata PACKAGE_UNDER_TEST parse_type" "" \
32 --replace "--metadata PACKAGE_VERSION ${version}" "" \
33 --replace "--html=build/testing/report.html --self-contained-html" "" \
34 --replace "--junit-xml=build/testing/report.xml" ""
37 pythonImportsCheck = [ "parse_type" ];
40 description = "Simplifies to build parse types based on the parse module";
41 homepage = "https://github.com/jenisys/parse_type";
42 license = licenses.bsd3;
43 maintainers = with maintainers; [ alunduil ];