depot/third_party/nixpkgs/pkgs/development/python-modules/rfc3986/default.nix
Default email 2969ca571a Project import generated by Copybara.
GitOrigin-RevId: 257cbbcd3ab7bd96f5d24d50adc807de7c82e06d
2021-01-09 11:05:03 +01:00

22 lines
564 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, idna, pytestCheckHook }:
buildPythonPackage rec {
pname = "rfc3986";
version = "1.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "17dvx15m3r49bmif5zlli8kzjd6bys6psixzbp14sd5367d9h8qi";
};
propagatedBuildInputs = [ idna ];
checkInputs = [ pytestCheckHook ];
meta = with stdenv.lib; {
description = "Validating URI References per RFC 3986";
homepage = "https://rfc3986.readthedocs.org";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}