pythonPackages.stem: move expression
This commit is contained in:
parent
fbff08f2f2
commit
061e79806e
18
pkgs/development/python-modules/stem/default.nix
Normal file
18
pkgs/development/python-modules/stem/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -6324,23 +6324,7 @@ in {
|
||||
|
||||
schema = callPackage ../development/python-modules/schema {};
|
||||
|
||||
stem = buildPythonPackage rec {
|
||||
name = "stem-${version}";
|
||||
version = "1.6.0";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/s/stem/${name}.tar.gz";
|
||||
sha256 = "1va9p3ij7lxg6ixfsvaql06dn11l3fgpxmss1dhlvafm7sqizznp";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Controller library that allows applications to interact with Tor (https://www.torproject.org/";
|
||||
homepage = https://stem.torproject.org/;
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ phreedom ];
|
||||
};
|
||||
|
||||
};
|
||||
stem = callPackage ../development/python-modules/stem { };
|
||||
|
||||
svg-path = buildPythonPackage rec {
|
||||
name = "svg.path-${version}";
|
||||
|
Loading…
Reference in New Issue
Block a user