nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 31 lines 592 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 idna, 6 pytestCheckHook, 7}: 8 9buildPythonPackage rec { 10 pname = "rfc3986"; 11 version = "2.0.0"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-l6rPnb1L/YKbqtbmMJ+mVzqvG+P2+nNcirBeRs7LJhw="; 17 }; 18 19 propagatedBuildInputs = [ idna ]; 20 21 nativeCheckInputs = [ pytestCheckHook ]; 22 23 pythonImportsCheck = [ "rfc3986" ]; 24 25 meta = { 26 description = "Validating URI References per RFC 3986"; 27 homepage = "https://rfc3986.readthedocs.org"; 28 license = lib.licenses.asl20; 29 maintainers = [ ]; 30 }; 31}