28fdb4eb11
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pipenv/versions
25 lines
641 B
Nix
25 lines
641 B
Nix
{ stdenv, python3Packages, pew }:
|
|
with python3Packages; buildPythonApplication rec {
|
|
name = "${pname}-${version}";
|
|
pname = "pipenv";
|
|
version = "2018.11.26";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0ip8zsrwmhrankrix0shig9g8q2knmr7b63sh7lqa8a5x03fcwx6";
|
|
};
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
|
|
propagatedBuildInputs = [ pew pip requests flake8 parver invoke ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Python Development Workflow for Humans";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ berdario ];
|
|
};
|
|
}
|