summary refs log tree commit diff
path: root/pkgs/development/tools/pipenv/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/pipenv/default.nix')
-rw-r--r--pkgs/development/tools/pipenv/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/tools/pipenv/default.nix b/pkgs/development/tools/pipenv/default.nix
new file mode 100644
index 000000000000..01433a6ce4d4
--- /dev/null
+++ b/pkgs/development/tools/pipenv/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, python3Packages, pew }:
+with python3Packages; buildPythonApplication rec {
+    name = "${pname}-${version}";
+    pname = "pipenv";
+    version = "8.2.7";
+
+    src = fetchPypi {
+      inherit pname version;
+      sha256 = "08wkxs6qqgzxamym523bjv7zahg8p9v18x0yi9vwclij5k91iyzm";
+    };
+
+    LC_ALL = "en_US.UTF-8";
+
+    propagatedBuildInputs = [ pew pip requests flake8 ];
+
+    doCheck = false;
+
+    meta = with stdenv.lib; {
+      description = "Python Development Workflow for Humans";
+      license = licenses.mit;
+      platforms = platforms.all;
+      maintainers = with maintainers; [ berdario ];
+    };
+  }