mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
19 lines
466 B
Nix
19 lines
466 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|