Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 22 lines 554 B view raw
1{ lib, buildPythonPackage, fetchPypi, idna, pytestCheckHook }: 2 3buildPythonPackage rec { 4 pname = "rfc3986"; 5 version = "1.4.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "17dvx15m3r49bmif5zlli8kzjd6bys6psixzbp14sd5367d9h8qi"; 10 }; 11 12 propagatedBuildInputs = [ idna ]; 13 14 checkInputs = [ pytestCheckHook ]; 15 16 meta = with lib; { 17 description = "Validating URI References per RFC 3986"; 18 homepage = "https://rfc3986.readthedocs.org"; 19 license = licenses.asl20; 20 maintainers = with maintainers; [ SuperSandro2000 ]; 21 }; 22}