pythonPackages.stem: move expression

This commit is contained in:
Robert Schütz
2018-03-20 11:38:02 +01:00
parent fbff08f2f2
commit 061e79806e
2 changed files with 19 additions and 17 deletions

View File

@@ -0,0 +1,18 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "stem";
version = "1.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "1va9p3ij7lxg6ixfsvaql06dn11l3fgpxmss1dhlvafm7sqizznp";
};
meta = with lib; {
description = "Controller library that allows applications to interact with Tor";
homepage = https://stem.torproject.org/;
license = licenses.gpl3;
maintainers = with maintainers; [ phreedom ];
};
}