nixpkgs/pkgs/development/python-modules/rfc3986/default.nix

24 lines
481 B
Nix
Raw Normal View History

2017-05-13 00:11:48 +02:00
{ stdenv, buildPythonPackage, fetchPypi,
pytest }:
buildPythonPackage rec {
pname = "rfc3986";
version = "1.3.1";
2017-05-13 00:11:48 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "1jprl2zm3pw2rfbda9rhg3v5bm8q36b8c9i4k8znimlf1mv8bcic";
2017-05-13 00:11:48 +02:00
};
checkInputs = [ pytest ];
2017-05-13 00:11:48 +02:00
checkPhase = ''
pytest
2017-05-13 00:11:48 +02:00
'';
meta = with stdenv.lib; {
homepage = https://rfc3986.readthedocs.org;
2017-05-13 00:11:48 +02:00
license = licenses.asl20;
description = "Validating URI References per RFC 3986";
};
}