nixpkgs/pkgs/development/tools/pipenv/default.nix

25 lines
641 B
Nix
Raw Normal View History

2017-10-15 17:16:51 +01:00
{ stdenv, python3Packages, pew }:
with python3Packages; buildPythonApplication rec {
name = "${pname}-${version}";
pname = "pipenv";
version = "2018.10.13";
2017-10-15 17:16:51 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "0qwflq00rwk3pnldndb30f3avnbi4hvv6c8mm6l5xxnxy9dj71d7";
2017-10-15 17:16:51 +01:00
};
LC_ALL = "en_US.UTF-8";
propagatedBuildInputs = [ pew pip requests flake8 parver invoke ];
2017-10-15 17:16:51 +01:00
doCheck = false;
meta = with stdenv.lib; {
description = "Python Development Workflow for Humans";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ berdario ];
};
}