My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/rfc3986/default.nix

39 lines
686 B

{ lib
, buildPythonPackage
, fetchPypi
, idna
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "rfc3986";
version = "2.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-l6rPnb1L/YKbqtbmMJ+mVzqvG+P2+nNcirBeRs7LJhw=";
};
propagatedBuildInputs = [
idna
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"rfc3986"
];
meta = with lib; {
description = "Validating URI References per RFC 3986";
homepage = "https://rfc3986.readthedocs.org";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}