5083ee08a2
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
44 lines
880 B
Nix
44 lines
880 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, setuptools
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "http-sfv";
|
|
version = "0.9.8";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mnot";
|
|
repo = "http_sfv";
|
|
rev = "http_sfv-${version}";
|
|
hash = "sha256-zl0Rk4QbzCVmYZ6TnVq+C+oe27Imz5fEQY9Fco5lo5s=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
typing-extensions
|
|
];
|
|
|
|
# Tests require external data (https://github.com/httpwg/structured-field-tests)
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"http_sfv"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Module to parse and serialise HTTP structured field values";
|
|
homepage = "https://github.com/mnot/http_sfv";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|