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

24 lines
493 B
Nix
Raw Normal View History

2017-05-12 22:11:48 +00:00
{ stdenv, buildPythonPackage, fetchPypi,
pytest }:
buildPythonPackage rec {
pname = "rfc3986";
2019-05-30 06:49:52 +00:00
version = "1.3.2";
2017-05-12 22:11:48 +00:00
src = fetchPypi {
inherit pname version;
2019-05-30 06:49:52 +00:00
sha256 = "0344d0bd428126ce554e7ca2b61787b6a28d2bbd19fc70ed2dd85efe31176405";
2017-05-12 22:11:48 +00:00
};
checkInputs = [ pytest ];
2017-05-12 22:11:48 +00:00
checkPhase = ''
pytest
2017-05-12 22:11:48 +00:00
'';
meta = with stdenv.lib; {
homepage = https://rfc3986.readthedocs.org;
2017-05-12 22:11:48 +00:00
license = licenses.asl20;
description = "Validating URI References per RFC 3986";
};
}