nixpkgs/pkgs/development/tools/pipenv/default.nix
R. RyanTM a27e3b2acb pipenv: 2018.10.13 -> 2018.11.14
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
2018-11-18 16:35:21 -08:00

25 lines
641 B
Nix

{ stdenv, python3Packages, pew }:
with python3Packages; buildPythonApplication rec {
name = "${pname}-${version}";
pname = "pipenv";
version = "2018.11.14";
src = fetchPypi {
inherit pname version;
sha256 = "1ni2cjgm04dwi8a0376nzwwy3gklqk9d0hkl8d9j760lvqshsxjz";
};
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 ];
};
}