nixpkgs/pkgs/development/python-modules/parse-type/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

46 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, parse
, pytestCheckHook
, six
}:
buildPythonPackage rec {
pname = "parse-type";
version = "0.6.0";
src = fetchFromGitHub {
owner = "jenisys";
repo = "parse_type";
rev = "v${version}";
hash = "sha256-v79zzAAwXYoK2N8ZPl1L90qOwMRexAV2wCTMvo4vrSc=";
};
propagatedBuildInputs = [
parse
six
];
nativeCheckInputs = [
pytestCheckHook
];
postPatch = ''
substituteInPlace pytest.ini \
--replace "--metadata PACKAGE_UNDER_TEST parse_type" "" \
--replace "--metadata PACKAGE_VERSION ${version}" "" \
--replace "--html=build/testing/report.html --self-contained-html" "" \
--replace "--junit-xml=build/testing/report.xml" ""
'';
pythonImportsCheck = [ "parse_type" ];
meta = with lib; {
description = "Simplifies to build parse types based on the parse module";
homepage = "https://github.com/jenisys/parse_type";
license = licenses.bsd3;
maintainers = with maintainers; [ alunduil ];
};
}