Fabian Affolter 2023-11-30 17:51:09 +01:00
parent 6c701d1137
commit 9714b1bdf4

View file

@ -1,25 +1,26 @@
{ lib { lib
, attrs
, buildPythonPackage , buildPythonPackage
, deprecated
, fetchFromGitHub , fetchFromGitHub
, setuptools
, pytest-mock , pytest-mock
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, six , setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "headerparser"; pname = "headerparser";
version = "0.4.0"; version = "0.5.1";
format = "pyproject"; pyproject = true;
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jwodder"; owner = "jwodder";
repo = pname; repo = "headerparser";
rev = "v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-KJJt85iC/4oBoIelB2zUJVyHSppFem/22v6F30P5nYM="; hash = "sha256-CWXha7BYVO5JFuhWP8OZ95fhUsZ3Jo0cgPAM+O5bfec=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -27,7 +28,8 @@ buildPythonPackage rec {
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [
six attrs
deprecated
]; ];
nativeCheckInputs = [ nativeCheckInputs = [
@ -35,13 +37,6 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
postPatch = ''
substituteInPlace tox.ini \
--replace "--cov=headerparser" "" \
--replace "--no-cov-on-fail" "" \
--replace "--flakes" ""
'';
pythonImportsCheck = [ pythonImportsCheck = [
"headerparser" "headerparser"
]; ];
@ -49,6 +44,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Module to parse key-value pairs in the style of RFC 822 (e-mail) headers"; description = "Module to parse key-value pairs in the style of RFC 822 (e-mail) headers";
homepage = "https://github.com/jwodder/headerparser"; homepage = "https://github.com/jwodder/headerparser";
changelog = "https://github.com/wheelodex/headerparser/blob/v${version}/CHANGELOG.md";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = with maintainers; [ ayazhafiz ]; maintainers = with maintainers; [ ayazhafiz ];
}; };