nixpkgs/pkgs/development/python-modules/yapsy/default.nix
2023-02-19 22:32:10 +01:00

25 lines
504 B
Nix

{ lib
, stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "yapsy";
version = "1.12.2";
src = fetchPypi {
pname = "Yapsy";
inherit version;
sha256 = "12rznbnswfw0w7qfbvmmffr9r317gl1rqg36nijwzsklkjgks4fq";
};
meta = with lib; {
homepage = "https://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;
};
}