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

24 lines
482 B
Nix
Raw Normal View History

2017-05-13 00:11:48 +02:00
{ stdenv, buildPythonPackage, fetchPypi,
pytest }:
buildPythonPackage rec {
pname = "rfc3986";
version = "1.2.0";
2017-05-13 00:11:48 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "1qf4dyxvjs7mxrxc0gr7gzyn4iflb2wgq01r5pzrxac8rnvy8fmw";
2017-05-13 00:11:48 +02:00
};
buildInputs = [ pytest ];
checkPhase = ''
py.test
'';
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";
};
}