mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
24 lines
583 B
Nix
24 lines
583 B
Nix
{ stdenv, buildPythonPackage, fetchurl
|
|
, pytest, mock, pytestcov, coverage }:
|
|
|
|
buildPythonPackage rec {
|
|
name = "gunicorn-19.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/g/gunicorn/${name}.tar.gz";
|
|
sha256 = "12d0jd9y9fyssc28mn8j6nzrck8y05hc946p5h0rmbc25043bj4b";
|
|
};
|
|
|
|
buildInputs = [ pytest mock pytestcov coverage ];
|
|
|
|
prePatch = ''
|
|
substituteInPlace requirements_test.txt --replace "==" ">="
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://pypi.python.org/pypi/gunicorn;
|
|
description = "WSGI HTTP Server for UNIX";
|
|
license = licenses.mit;
|
|
};
|
|
}
|