My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/first/default.nix

20 lines
477 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "first";
version = "2.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "1gykyrm6zlrbf9iz318p57qwk594mx1jf0d79v79g32zql45na7z";
};
doCheck = false; # no tests
meta = with lib; {
description = "The function you always missed in Python";
homepage = "https://github.com/hynek/first/";
license = licenses.mit;
maintainers = with maintainers; [ zimbatm ];
};
}