about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/transmissionrpc/default.nix
blob: 5c2cf2ee85deefa33fbff37cf81249fa97981858 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib
, buildPythonPackage
, fetchPypi
, six
}:

buildPythonPackage rec {
  pname = "transmissionrpc";
  version = "0.11";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "ec43b460f9fde2faedbfa6d663ef495b3fd69df855a135eebe8f8a741c0dde60";
  };

  propagatedBuildInputs = [ six ];

  # no tests
  doCheck = false;
  pythonImportsCheck = [ "transmissionrpc" ];

  meta = with lib; {
    description = "Python implementation of the Transmission bittorent client RPC protocol";
    homepage = "https://pypi.python.org/pypi/transmissionrpc/";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}