pythonPackages.pygpgme : move to separate expression

This commit is contained in:
wisut hantanong 2017-08-31 21:02:30 +07:00
parent ac35d9884b
commit 80ca1cae8b
2 changed files with 27 additions and 22 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, buildPythonPackage, fetchurl, isPyPy
, gpgme }:
buildPythonPackage rec {
version = "0.3";
pname = "pygpgme";
name = "${pname}-${version}";
disabled = isPyPy;
src = fetchurl {
url = "https://launchpad.net/pygpgme/trunk/${version}/+download/${name}.tar.gz";
sha256 = "5fd887c407015296a8fd3f4b867fe0fcca3179de97ccde90449853a3dfb802e1";
};
# error: invalid command 'test'
doCheck = false;
propagatedBuildInputs = [ gpgme ];
meta = with stdenv.lib; {
homepage = "https://launchpad.net/pygpgme";
description = "A Python wrapper for the GPGME library";
license = licenses.lgpl21;
maintainers = with maintainers; [ garbas ];
};
}

View File

@ -17805,28 +17805,7 @@ in {
};
});
pygpgme = buildPythonPackage rec {
version = "0.3";
name = "pygpgme-${version}";
disabled = isPyPy;
src = pkgs.fetchurl {
url = "https://launchpad.net/pygpgme/trunk/${version}/+download/${name}.tar.gz";
sha256 = "5fd887c407015296a8fd3f4b867fe0fcca3179de97ccde90449853a3dfb802e1";
};
# error: invalid command 'test'
doCheck = false;
propagatedBuildInputs = with self; [ pkgs.gpgme ];
meta = {
homepage = "https://launchpad.net/pygpgme";
description = "A Python wrapper for the GPGME library";
license = licenses.lgpl21;
maintainers = with maintainers; [ garbas ];
};
};
pygpgme = callPackage ../development/python-modules/pygpgme { };
pylint = callPackage ../development/python-modules/pylint { };