mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
69b393ace5
These URLs are reported as problematic by Repology. It could be a permanent redirection or the page does not exist anymore
24 lines
442 B
Nix
24 lines
442 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 = "https://www.saddi.com/software/flup/";
|
|
description = "FastCGI Python module set";
|
|
license = licenses.bsd0;
|
|
};
|
|
|
|
}
|