pipenv: Add missing build input virtualenv-clone
This commit is contained in:
parent
bdbd5f6026
commit
baf17a4042
@ -1,5 +1,15 @@
|
|||||||
{ stdenv, python3Packages, pew }:
|
{ lib
|
||||||
with python3Packages;
|
, buildPythonApplication
|
||||||
|
, flake8
|
||||||
|
, invoke
|
||||||
|
, parver
|
||||||
|
, pip
|
||||||
|
, requests
|
||||||
|
, virtualenv
|
||||||
|
, fetchPypi
|
||||||
|
, virtualenv-clone
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "pipenv";
|
pname = "pipenv";
|
||||||
version = "2018.11.26";
|
version = "2018.11.26";
|
||||||
@ -28,7 +38,7 @@ buildPythonApplication rec {
|
|||||||
"--set PIP_IGNORE_INSTALLED 1"
|
"--set PIP_IGNORE_INSTALLED 1"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "Python Development Workflow for Humans";
|
description = "Python Development Workflow for Humans";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
|
@ -8377,7 +8377,7 @@ in
|
|||||||
svg2tikz = python27Packages.svg2tikz;
|
svg2tikz = python27Packages.svg2tikz;
|
||||||
|
|
||||||
pew = callPackage ../development/tools/pew {};
|
pew = callPackage ../development/tools/pew {};
|
||||||
pipenv = callPackage ../development/tools/pipenv {};
|
pipenv = python3Packages.callPackage ../development/tools/pipenv {};
|
||||||
|
|
||||||
pipewire = callPackage ../development/libraries/pipewire {};
|
pipewire = callPackage ../development/libraries/pipewire {};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user