2017-05-12 23:11:48 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi,
|
|
|
|
pytest }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "rfc3986";
|
2019-05-30 07:49:52 +01:00
|
|
|
version = "1.3.2";
|
2017-05-12 23:11:48 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-30 07:49:52 +01:00
|
|
|
sha256 = "0344d0bd428126ce554e7ca2b61787b6a28d2bbd19fc70ed2dd85efe31176405";
|
2017-05-12 23:11:48 +01:00
|
|
|
};
|
|
|
|
|
2019-03-09 13:38:27 +00:00
|
|
|
checkInputs = [ pytest ];
|
2017-05-12 23:11:48 +01:00
|
|
|
checkPhase = ''
|
2019-03-09 16:40:44 +00:00
|
|
|
pytest
|
2017-05-12 23:11:48 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://rfc3986.readthedocs.org;
|
2017-05-12 23:11:48 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
description = "Validating URI References per RFC 3986";
|
|
|
|
};
|
|
|
|
}
|