forked from mirrors/nixpkgs
python3Packages.priority: init at 1.3.0
This commit is contained in:
parent
5adfcb951a
commit
a586c14cc4
23
pkgs/development/python-modules/priority/default.nix
Normal file
23
pkgs/development/python-modules/priority/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, pytest, hypothesis }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "priority";
|
||||
version = "1.3.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1gpzn9k9zgks0iw5wdmad9b4dry8haiz2sbp6gycpjkzdld9dhbb";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -1856,6 +1856,8 @@ in {
|
|||
|
||||
poyo = callPackage ../development/python-modules/poyo { };
|
||||
|
||||
priority = callPackage ../development/python-modules/priority { };
|
||||
|
||||
prov = callPackage ../development/python-modules/prov { };
|
||||
|
||||
pudb = callPackage ../development/python-modules/pudb { };
|
||||
|
|
Loading…
Reference in a new issue