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

25 lines
622 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";
2018-01-01 03:43:12 +00:00
version = "9.0.1";
2017-10-15 17:16:51 +01:00
src = fetchPypi {
inherit pname version;
2018-01-01 03:43:12 +00:00
sha256 = "16k77iy1apbc1s5j78aimhjrcw89vbkq5irs80dmm70wayi0myz1";
2017-10-15 17:16:51 +01:00
};
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 ];
};
}