mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
pipenv: Add missing build input virtualenv-clone
This commit is contained in:
parent
bdbd5f6026
commit
baf17a4042
|
@ -1,5 +1,15 @@
|
|||
{ stdenv, python3Packages, pew }:
|
||||
with python3Packages;
|
||||
{ lib
|
||||
, buildPythonApplication
|
||||
, flake8
|
||||
, invoke
|
||||
, parver
|
||||
, pip
|
||||
, requests
|
||||
, virtualenv
|
||||
, fetchPypi
|
||||
, virtualenv-clone
|
||||
}:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "pipenv";
|
||||
version = "2018.11.26";
|
||||
|
@ -28,7 +38,7 @@ buildPythonApplication rec {
|
|||
"--set PIP_IGNORE_INSTALLED 1"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Python Development Workflow for Humans";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.all;
|
||||
|
|
|
@ -8377,7 +8377,7 @@ in
|
|||
svg2tikz = python27Packages.svg2tikz;
|
||||
|
||||
pew = callPackage ../development/tools/pew {};
|
||||
pipenv = callPackage ../development/tools/pipenv {};
|
||||
pipenv = python3Packages.callPackage ../development/tools/pipenv {};
|
||||
|
||||
pipewire = callPackage ../development/libraries/pipewire {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue