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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "12rznbnswfw0w7qfbvmmffr9r317gl1rqg36nijwzsklkjgks4fq";
  };

  meta = with lib; {
    homepage = "http://yapsy.sourceforge.net/";
    description = "Yet another plugin system";
    license = licenses.bsd0;
    # tests fail and are not using pytest to easily disable them
    broken = stdenv.isDarwin;
  };
}