python.pkgs.sarge: move to a separate file
This commit is contained in:
parent
674c3d20fc
commit
cc6dff3be4
18
pkgs/development/python-modules/sarge/default.nix
Normal file
18
pkgs/development/python-modules/sarge/default.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchurl }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "sarge-${version}";
|
||||||
|
version = "0.1.4";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://pypi/s/sarge/${name}.tar.gz";
|
||||||
|
sha256 = "08s8896973bz1gg0pkr592w6g4p6v47bkfvws5i91p9xf8b35yar";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = http://sarge.readthedocs.org/;
|
||||||
|
description = "A wrapper for subprocess which provides command pipeline functionality";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ abbradar ];
|
||||||
|
};
|
||||||
|
}
|
@ -6414,23 +6414,7 @@ in {
|
|||||||
doCheck = false;
|
doCheck = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
sarge = buildPythonPackage rec {
|
sarge = callPackage ../development/python-modules/sarge { };
|
||||||
name = "sarge-${version}";
|
|
||||||
version = "0.1.4";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/s/sarge/${name}.tar.gz";
|
|
||||||
sha256 = "08s8896973bz1gg0pkr592w6g4p6v47bkfvws5i91p9xf8b35yar";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = "http://sarge.readthedocs.org/";
|
|
||||||
description = "A wrapper for subprocess which provides command pipeline functionality";
|
|
||||||
license = licenses.bsd3;
|
|
||||||
platforms = platforms.all;
|
|
||||||
maintainers = with maintainers; [ abbradar ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
subliminal = callPackage ../development/python-modules/subliminal {};
|
subliminal = callPackage ../development/python-modules/subliminal {};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user