pythonPackages.hyperlink: cleanups, add homepage

This commit is contained in:
Fabian Affolter 2021-04-21 08:56:22 +02:00
parent 5c42f1081b
commit 29aaa03932

View file

@ -1,4 +1,10 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, idna, typing ? null }: { lib
, buildPythonPackage
, fetchPypi
, isPy27
, idna
, typing ? null
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "hyperlink"; pname = "hyperlink";
@ -6,7 +12,7 @@ buildPythonPackage rec {
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "427af957daa58bc909471c6c40f74c5450fa123dd093fc53efd2e91d2705a56b"; sha256 = "0sx50lkivsfjxx9zr4yh7l9gll2l9kvl0v0w8w4wk2x5v9bzjyj2";
}; };
propagatedBuildInputs = [ idna ] propagatedBuildInputs = [ idna ]
@ -14,6 +20,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "A featureful, correct URL for Python"; description = "A featureful, correct URL for Python";
homepage = "https://github.com/python-hyper/hyperlink";
license = licenses.mit; license = licenses.mit;
platforms = platforms.all; platforms = platforms.all;
maintainers = with maintainers; [ apeschar ]; maintainers = with maintainers; [ apeschar ];