Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 487 B view raw
1{ stdenv, 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 stdenv.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}