mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
f3282c8d1e
* treewide: remove unused variables * making ofborg happy
29 lines
680 B
Nix
29 lines
680 B
Nix
{ lib, buildPythonPackage, fetchPypi, pytest, hypothesis }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "priority";
|
|
version = "1.3.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1gpzn9k9zgks0iw5wdmad9b4dry8haiz2sbp6gycpjkzdld9dhbb";
|
|
};
|
|
|
|
patches = [
|
|
# https://github.com/python-hyper/priority/pull/135
|
|
./deadline.patch
|
|
];
|
|
|
|
checkInputs = [ pytest hypothesis ];
|
|
checkPhase = ''
|
|
PYTHONPATH="src:$PYTHONPATH" pytest
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = https://python-hyper.org/priority/;
|
|
description = "A pure-Python implementation of the HTTP/2 priority tree";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.qyliss ];
|
|
};
|
|
}
|