pythonPAckages.yapsy: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-29 17:28:45 -04:00
parent 6afd56f61a
commit c0e09bef5a
2 changed files with 24 additions and 11 deletions

View File

@@ -0,0 +1,23 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "Yapsy";
version = "1.11.223";
src = fetchPypi {
inherit pname version;
sha256 = "19pjsnqizswnczhlav4lb7zlzs0n73ijrsgksy4374b14jkkkfs5";
};
doCheck = false;
meta = with stdenv.lib; {
homepage = http://yapsy.sourceforge.net/;
description = "Yet another plugin system";
license = licenses.bsd0;
};
}