pythonPackages.percol: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-25 21:17:49 -04:00 committed by Frederik Rietdijk
parent 9c36906e1a
commit a3bcd00771
2 changed files with 25 additions and 19 deletions

View 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 ];
};
}

View file

@ -3127,25 +3127,7 @@ in {
pep257 = callPackage ../development/python-modules/pep257 { };
percol = buildPythonPackage rec {
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 ];
};
};
percol = callPackage ../development/python-modules/percol { };
pexif = buildPythonPackage rec {
name = "pexif-${version}";