aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/cheroot/default.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2017-09-05 11:16:41 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-09-06 13:54:10 +0200
commit67651d80bc8baaf09ab91fec8ea423e09107ed8f (patch)
tree216a82ca309b80298039c2038160a22e94a1de6f /pkgs/development/python-modules/cheroot/default.nix
parent036bafe0b94fb99ee9d1eb3d2fb902293a9f39a6 (diff)
Merge pull request #28884 from FRidh/python-fixes
Python: several fixes
Diffstat (limited to 'pkgs/development/python-modules/cheroot/default.nix')
-rw-r--r--pkgs/development/python-modules/cheroot/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/cheroot/default.nix b/pkgs/development/python-modules/cheroot/default.nix
new file mode 100644
index 000000000000..c20cbabe0d61
--- /dev/null
+++ b/pkgs/development/python-modules/cheroot/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchPypi, buildPythonPackage
+, six
+, coverage, codecov, pytest, pytestcov, pytest-sugar, portend
+, backports_unittest-mock, setuptools_scm }:
+
+buildPythonPackage rec {
+ name = "${pname}-${version}";
+ pname = "cheroot";
+ version = "5.5.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1fhyk8lgs2blfx4zjvwsy6f0ynrs5fwnnr3qf07r6c4j3gwlkqsr";
+ };
+
+ propagatedBuildInputs = [ six ];
+ buildInputs = [ coverage codecov pytest pytestcov pytest-sugar portend backports_unittest-mock setuptools_scm ];
+
+ checkPhase = ''
+ py.test cheroot
+ '';
+
+ meta = with stdenv.lib; {
+ description = "High-performance, pure-Python HTTP";
+ homepage = https://github.com/cherrypy/cheroot;
+ license = licenses.mit;
+ };
+}