nixpkgs-suyu/pkgs/development/python-modules/h11/default.nix

31 lines
696 B
Nix
Raw Normal View History

2019-09-01 18:11:16 +02:00
{ lib, buildPythonPackage, fetchPypi, pytest, fetchpatch }:
2018-03-05 17:17:29 +01:00
buildPythonPackage rec {
pname = "h11";
version = "0.9.0";
2018-03-05 17:17:29 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "1qfad70h59hya21vrzz8dqyyaiqhac0anl2dx3s3k80gpskvrm1k";
2018-03-05 17:17:29 +01:00
};
2019-09-01 18:11:16 +02:00
patches = [
# pytest5 compatability
(fetchpatch {
url = https://github.com/python-hyper/h11/commit/241e220493a511a5f5a5d472cb88d72661a92ab1.patch;
sha256 = "1s3ipf9s41m1lksws3xv3j133q7jnjdqvmgk4sfnm8q7li2dww39";
})
];
2018-12-02 22:17:23 +01:00
checkInputs = [ pytest ];
checkPhase = ''
py.test
'';
2018-03-05 17:17:29 +01:00
meta = with lib; {
description = "Pure-Python, bring-your-own-I/O implementation of HTTP/1.1";
license = licenses.mit;
};
}