mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 09:03:42 +00:00
python-packages: add falcon-0.2
This commit is contained in:
parent
56a8ab137c
commit
1fe1f73089
@ -4467,6 +4467,25 @@ let
|
||||
};
|
||||
});
|
||||
|
||||
falcon = buildPythonPackage (rec {
|
||||
name = "falcon-0.2";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/f/falcon/${name}.tar.gz";
|
||||
md5 = "bf9e8bdd20700f1ff7ce6397cd441fbd";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ coverage ddt nose pyyaml requests2 six testtools python_mimeparse ];
|
||||
|
||||
meta = {
|
||||
description = "An unladen web framework for building APIs and app backends";
|
||||
|
||||
homepage = http://falconframework.org;
|
||||
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
};
|
||||
});
|
||||
|
||||
flup = buildPythonPackage (rec {
|
||||
name = "flup-1.0.2";
|
||||
disabled = isPy3k;
|
||||
|
Loading…
Reference in New Issue
Block a user