mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
24 lines
432 B
Nix
24 lines
432 B
Nix
|
{ stdenv
|
||
|
, buildPythonPackage
|
||
|
, isPy3k
|
||
|
, fetchPypi
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "flup";
|
||
|
version = "1.0.3";
|
||
|
disabled = isPy3k;
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "5eb09f26eb0751f8380d8ac43d1dfb20e1d42eca0fa45ea9289fa532a79cd159";
|
||
|
};
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = "http://trac.saddi.com/flup";
|
||
|
description = "FastCGI Python module set";
|
||
|
license = licenses.bsd0;
|
||
|
};
|
||
|
|
||
|
}
|