25 lines
622 B
Nix
25 lines
622 B
Nix
{ stdenv, python3Packages, pew }:
|
|
with python3Packages; buildPythonApplication rec {
|
|
name = "${pname}-${version}";
|
|
pname = "pipenv";
|
|
version = "9.0.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "16k77iy1apbc1s5j78aimhjrcw89vbkq5irs80dmm70wayi0myz1";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|