mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
pythonPackages.first: init at 2.0.1
This commit is contained in:
parent
f5a5516355
commit
5e701625de
22
pkgs/development/python-modules/first/default.nix
Normal file
22
pkgs/development/python-modules/first/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -29044,6 +29044,8 @@ EOF
|
|||
};
|
||||
};
|
||||
|
||||
first = callPackage ../development/python-modules/first {};
|
||||
|
||||
flaskbabel = buildPythonPackage rec {
|
||||
name = "Flask-Babel-0.11.1";
|
||||
|
||||
|
|
Loading…
Reference in a new issue