nixpkgs/pkgs/development/python-modules/rfc3986/default.nix
R. RyanTM 98a95efd7d python37Packages.rfc3986: 1.2.0 -> 1.3.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-rfc3986/versions
2019-05-02 02:52:57 -07:00

24 lines
481 B
Nix

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