i3-py: init at 0.6.4

Extract i3-py from i3minator so it can be installed on its own.
This commit is contained in:
Travis B. Hartwell 2015-06-20 23:30:09 -06:00
parent d7615af947
commit f4d876f73c
2 changed files with 22 additions and 15 deletions

View file

@ -1,19 +1,6 @@
{ stdenv, fetchurl, buildPythonPackage, pythonPackages, python }:
let
i3-py = buildPythonPackage rec {
version = "0.6.4";
name = "i3-py-${version}";
src = fetchurl {
url = "https://pypi.python.org/packages/source/i/i3-py/i3-py-${version}.tar.gz";
sha256 = "1sgl438jrb4cdyl7hbc3ymwsf7y3zy09g1gh7ynilxpllp37jc8y";
};
# no tests in tarball
doCheck = false;
};
in buildPythonPackage rec {
buildPythonPackage rec {
name = "i3minator-${version}";
version = "0.0.4";
@ -22,7 +9,7 @@ in buildPythonPackage rec {
sha256 = "11dn062788kwfs8k2ry4v8zr2gn40r6lsw770s9g2gvhl5n469dw";
};
propagatedBuildInputs = [ pythonPackages.pyyaml i3-py ];
propagatedBuildInputs = [ pythonPackages.pyyaml pythonPackages.i3-py ];
meta = with stdenv.lib; {
description = "i3 project manager similar to tmuxinator";

View file

@ -3410,6 +3410,26 @@ let
};
};
i3-py = buildPythonPackage rec {
version = "0.6.4";
name = "i3-py-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/i/i3-py/i3-py-${version}.tar.gz";
sha256 = "1sgl438jrb4cdyl7hbc3ymwsf7y3zy09g1gh7ynilxpllp37jc8y";
};
# no tests in tarball
doCheck = false;
meta = {
description = "tools for i3 users and developers";
homepage = "https://github.com/ziberna/i3-py";
license = licenses.gpl3;
platforms = platforms.linux;
};
};
jsonpatch = buildPythonPackage rec {
name = "jsonpatch-1.8";