f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
35 lines
816 B
Nix
35 lines
816 B
Nix
{ stdenv, fetchurl, pythonPackages }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "tmuxp-${version}";
|
|
version = "1.3.1";
|
|
|
|
namePrefix = "";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/t/tmuxp/${name}.tar.gz";
|
|
sha256 = "189mxnb2pxj3wjijn56j8y5x1r23fil00fn2q7d6bd13vgr0f85s";
|
|
};
|
|
|
|
patchPhase = ''
|
|
sed -i 's/==.*$//' requirements/base.txt requirements/test.txt
|
|
'';
|
|
|
|
buildInputs = with pythonPackages; [
|
|
pytest_29
|
|
pytest-rerunfailures
|
|
];
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
click colorama kaptan libtmux
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Manage tmux workspaces from JSON and YAML";
|
|
homepage = http://tmuxp.readthedocs.io;
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ jgeerds ];
|
|
};
|
|
}
|