about summary refs log tree commit diff
path: root/pkgs/development/python-modules/yapsy/default.nix
blob: 9aa1985270ddc899025b8882dc64ea867f7aa148 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "Yapsy";
  version = "1.12.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0g1yd8nvhfdasckb929rijmj040x25ycns2b3l5wq53gm4lv537h";
  };

  meta = with stdenv.lib; {
    homepage = http://yapsy.sourceforge.net/;
    description = "Yet another plugin system";
    license = licenses.bsd0;
  };

}