mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
34 lines
698 B
Nix
34 lines
698 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "yapsy";
|
|
version = "1.12.2-unstable-2023-03-29";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tibonihoo";
|
|
repo = "yapsy";
|
|
rev = "6b487b04affb19ab40adbbc87827668bea0abcee";
|
|
hash = "sha256-QKZlUAhYMCCsT/jbEHb39ESZ2+2FZYnhJnc1PgsozBA=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/package";
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "yapsy" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://yapsy.sourceforge.net/";
|
|
description = "Yet another plugin system";
|
|
license = licenses.bsd2;
|
|
};
|
|
}
|