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