python3Packages.transmission-rpc: update homepage
This commit is contained in:
parent
cce7831490
commit
237e85d5aa
1 changed files with 4 additions and 1 deletions
|
@ -5,11 +5,13 @@
|
||||||
, typing-extensions
|
, typing-extensions
|
||||||
, requests
|
, requests
|
||||||
, yarl
|
, yarl
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "transmission-rpc";
|
pname = "transmission-rpc";
|
||||||
version = "3.2.7";
|
version = "3.2.7";
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
|
@ -25,11 +27,12 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
# no tests
|
# no tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
pythonImportsCheck = [ "transmission_rpc" ];
|
pythonImportsCheck = [ "transmission_rpc" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python module that implements the Transmission bittorent client RPC protocol";
|
description = "Python module that implements the Transmission bittorent client RPC protocol";
|
||||||
homepage = "https://pypi.python.org/project/transmission-rpc/";
|
homepage = "https://github.com/Trim21/transmission-rpc";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ eyjhb ];
|
maintainers = with maintainers; [ eyjhb ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue