forked from mirrors/nixpkgs
98a95efd7d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-rfc3986/versions
24 lines
481 B
Nix
24 lines
481 B
Nix
{ stdenv, buildPythonPackage, fetchPypi,
|
|
pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rfc3986";
|
|
version = "1.3.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1jprl2zm3pw2rfbda9rhg3v5bm8q36b8c9i4k8znimlf1mv8bcic";
|
|
};
|
|
|
|
checkInputs = [ pytest ];
|
|
checkPhase = ''
|
|
pytest
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://rfc3986.readthedocs.org;
|
|
license = licenses.asl20;
|
|
description = "Validating URI References per RFC 3986";
|
|
};
|
|
}
|