Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 20 lines 494 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, idna }: 2 3buildPythonPackage rec { 4 pname = "hyperlink"; 5 version = "19.0.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "4288e34705da077fada1111a24a0aa08bb1e76699c9ce49876af722441845654"; 10 }; 11 12 propagatedBuildInputs = [ idna ]; 13 14 meta = with stdenv.lib; { 15 description = "A featureful, correct URL for Python"; 16 license = licenses.mit; 17 platforms = platforms.all; 18 maintainers = with maintainers; [ apeschar ]; 19 }; 20}