mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
parent
c6f90f9493
commit
e55b99e840
2 changed files with 25 additions and 0 deletions
24
pkgs/development/tools/pipenv/default.nix
Normal file
24
pkgs/development/tools/pipenv/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -6675,6 +6675,7 @@ with pkgs;
|
|||
svg2tikz = python27Packages.svg2tikz;
|
||||
|
||||
pew = callPackage ../development/tools/pew {};
|
||||
pipenv = callPackage ../development/tools/pipenv {};
|
||||
|
||||
pyrex = pyrex095;
|
||||
|
||||
|
|
Loading…
Reference in a new issue