mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
cfe52039ac
added pypifetch
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;
|
|
};
|
|
|
|
}
|