pythonPackages.percol: refactor move to python-modules
This commit is contained in:
parent
9c36906e1a
commit
a3bcd00771
24
pkgs/development/python-modules/percol/default.nix
Normal file
24
pkgs/development/python-modules/percol/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, isPy3k
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "percol";
|
||||||
|
version = "0.0.8";
|
||||||
|
disabled = isPy3k;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "169s5mhw1s60qbsd6pkf9bb2x6wfgx8hn8nw9d4qgc68qnnpp2cj";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/mooz/percol;
|
||||||
|
description = "Adds flavor of interactive filtering to the traditional pipe concept of shell";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ koral ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -3127,25 +3127,7 @@ in {
|
|||||||
|
|
||||||
pep257 = callPackage ../development/python-modules/pep257 { };
|
pep257 = callPackage ../development/python-modules/pep257 { };
|
||||||
|
|
||||||
percol = buildPythonPackage rec {
|
percol = callPackage ../development/python-modules/percol { };
|
||||||
name = "percol-${version}";
|
|
||||||
version = "0.0.8";
|
|
||||||
disabled = isPy3k;
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/p/percol/${name}.tar.gz";
|
|
||||||
sha256 = "169s5mhw1s60qbsd6pkf9bb2x6wfgx8hn8nw9d4qgc68qnnpp2cj";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = https://github.com/mooz/percol;
|
|
||||||
description = "Adds flavor of interactive filtering to the traditional pipe concept of shell";
|
|
||||||
license = licenses.mit;
|
|
||||||
maintainers = with maintainers; [ koral ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
pexif = buildPythonPackage rec {
|
pexif = buildPythonPackage rec {
|
||||||
name = "pexif-${version}";
|
name = "pexif-${version}";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user