Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 24 lines 516 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, six 5}: 6 7buildPythonPackage rec { 8 pname = "transmissionrpc"; 9 version = "0.11"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "ec43b460f9fde2faedbfa6d663ef495b3fd69df855a135eebe8f8a741c0dde60"; 14 }; 15 16 propagatedBuildInputs = [ six ]; 17 18 meta = with stdenv.lib; { 19 description = "Python implementation of the Transmission bittorent client RPC protocol"; 20 homepage = https://pypi.python.org/pypi/transmissionrpc/; 21 license = licenses.mit; 22 }; 23 24}