at 23.05-pre 477 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "first"; 5 version = "2.0.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1gykyrm6zlrbf9iz318p57qwk594mx1jf0d79v79g32zql45na7z"; 10 }; 11 12 doCheck = false; # no tests 13 14 meta = with lib; { 15 description = "The function you always missed in Python"; 16 homepage = "https://github.com/hynek/first/"; 17 license = licenses.mit; 18 maintainers = with maintainers; [ zimbatm ]; 19 }; 20}