pythonPackages.first: init at 2.0.1

This commit is contained in:
zimbatm 2017-03-12 18:10:04 +00:00 committed by Jörg Thalheim
parent f5a5516355
commit 5e701625de
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, buildPythonPackage, fetchPypi }:
let
pname = "first";
version = "2.0.1";
in
buildPythonPackage {
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0pn9hl2y0pz61la1xhkdz6vl9i2dg3nh0ksizcf0f9ybh8sxxcrv";
};
doCheck = false; # no tests
meta = with stdenv.lib; {
description = "The function you always missed in Python";
homepage = https://github.com/hynek/first/;
license = licenses.mit;
maintainers = with maintainers; [ zimbatm ];
};
}

View File

@ -29044,6 +29044,8 @@ EOF
};
};
first = callPackage ../development/python-modules/first {};
flaskbabel = buildPythonPackage rec {
name = "Flask-Babel-0.11.1";