Files
nixpkgs/pkgs/development/python-modules/gunicorn/default.nix
T

26 lines
644 B
Nix
Raw Normal View History

2017-01-14 00:08:19 +01:00
{ stdenv, buildPythonPackage, fetchurl
, pytest, mock, pytestcov, coverage }:
buildPythonPackage rec {
2017-05-27 11:25:35 +02:00
pname = "gunicorn";
2017-05-27 14:24:47 +02:00
version = "19.7.1";
2017-05-27 11:25:35 +02:00
name = "${pname}-${version}";
2017-01-14 00:08:19 +01:00
src = fetchurl {
url = "mirror://pypi/g/gunicorn/${name}.tar.gz";
2017-05-27 14:24:47 +02:00
sha256 = "eee1169f0ca667be05db3351a0960765620dad53f53434262ff8901b68a1b622";
2017-01-14 00:08:19 +01:00
};
buildInputs = [ pytest mock pytestcov coverage ];
prePatch = ''
substituteInPlace requirements_test.txt --replace "==" ">="
'';
meta = with stdenv.lib; {
homepage = https://pypi.python.org/pypi/gunicorn;
2017-01-14 00:08:19 +01:00
description = "WSGI HTTP Server for UNIX";
license = licenses.mit;
};
}