nixpkgs/pkgs/development/python-modules/rfc3986/default.nix
worldofpeace 47dd2b4c6e
Replace deprecated py.test command with pytest
Co-Authored-By: sveitser <sveitser@gmail.com>
2019-03-10 00:40:44 +08:00

24 lines
481 B
Nix

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