Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 17.09 519 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2let 3 pname = "first"; 4 version = "2.0.1"; 5in 6buildPythonPackage { 7 name = "${pname}-${version}"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "0pn9hl2y0pz61la1xhkdz6vl9i2dg3nh0ksizcf0f9ybh8sxxcrv"; 12 }; 13 14 doCheck = false; # no tests 15 16 meta = with stdenv.lib; { 17 description = "The function you always missed in Python"; 18 homepage = https://github.com/hynek/first/; 19 license = licenses.mit; 20 maintainers = with maintainers; [ zimbatm ]; 21 }; 22}