2017-03-12 18:10:04 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
2017-11-09 11:26:09 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-03-12 18:10:04 +00:00
|
|
|
pname = "first";
|
2019-04-02 23:28:37 +01:00
|
|
|
version = "2.0.2";
|
2017-03-12 18:10:04 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-02 23:28:37 +01:00
|
|
|
sha256 = "1gykyrm6zlrbf9iz318p57qwk594mx1jf0d79v79g32zql45na7z";
|
2017-03-12 18:10:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false; # no tests
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "The function you always missed in Python";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/hynek/first/";
|
2017-03-12 18:10:04 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ zimbatm ];
|
|
|
|
};
|
|
|
|
}
|