Merge pull request #283753 from fabaff/http-sfv-bump

python311Packages.http-sfv: 0.9.8 -> 0.9.9, python311Packages.http-sf: init at 1.0.1
This commit is contained in:
Fabian Affolter 2024-01-25 20:59:51 +01:00 committed by GitHub
commit 4551ff176f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 50 additions and 3 deletions

View file

@ -0,0 +1,45 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
, typing-extensions
}:
buildPythonPackage rec {
pname = "http-sf";
version = "1.0.1";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "mnot";
repo = "http-sf";
rev = "refs/tags/v${version}";
hash = "sha256-8xK8/IVrhqMDgkxZY10QqSGswCrttc29FZLCntmSUQ4=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
typing-extensions
];
# Tests require external data (https://github.com/httpwg/structured-field-tests)
doCheck = false;
pythonImportsCheck = [
"http_sf"
];
meta = with lib; {
description = "Module to parse and serialise HTTP structured field values";
homepage = "https://github.com/mnot/http-sf";
changelog = "https://github.com/mnot/http-sf/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -8,8 +8,8 @@
buildPythonPackage rec {
pname = "http-sfv";
version = "0.9.8";
format = "pyproject";
version = "0.9.9";
pyproject = true;
disabled = pythonOlder "3.7";
@ -17,7 +17,7 @@ buildPythonPackage rec {
owner = "mnot";
repo = "http_sfv";
rev = "http_sfv-${version}";
hash = "sha256-zl0Rk4QbzCVmYZ6TnVq+C+oe27Imz5fEQY9Fco5lo5s=";
hash = "sha256-xf9bGDfsEcQnFQ2b1bLRGYug+H4e5jeV/LJstQtp6Bw=";
};
nativeBuildInputs = [

View file

@ -5296,6 +5296,8 @@ self: super: with self; {
http-parser = callPackage ../development/python-modules/http-parser { };
http-sf = callPackage ../development/python-modules/http-sf { };
http-sfv = callPackage ../development/python-modules/http-sfv { };
httpretty = callPackage ../development/python-modules/httpretty { };