2017-05-13 00:11:48 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi,
|
|
|
|
pytest }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "rfc3986";
|
2019-05-02 11:52:57 +02:00
|
|
|
version = "1.3.1";
|
2017-05-13 00:11:48 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-02 11:52:57 +02:00
|
|
|
sha256 = "1jprl2zm3pw2rfbda9rhg3v5bm8q36b8c9i4k8znimlf1mv8bcic";
|
2017-05-13 00:11:48 +02:00
|
|
|
};
|
|
|
|
|
2019-03-09 14:38:27 +01:00
|
|
|
checkInputs = [ pytest ];
|
2017-05-13 00:11:48 +02:00
|
|
|
checkPhase = ''
|
2019-03-09 17:40:44 +01:00
|
|
|
pytest
|
2017-05-13 00:11:48 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://rfc3986.readthedocs.org;
|
2017-05-13 00:11:48 +02:00
|
|
|
license = licenses.asl20;
|
|
|
|
description = "Validating URI References per RFC 3986";
|
|
|
|
};
|
|
|
|
}
|