python311Packages.yapsy: 1.12.2 -> 1.12.2-unstable-2023-03-29

Diff: https://github.com/tibonihoo/yapsy/compare/release_Yapsy-1.12.2...6b487b04affb19ab40adbbc87827668bea0abcee
This commit is contained in:
natsukium 2024-04-09 22:02:41 +09:00
parent bea21e5fa9
commit 74af93dd19
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -1,21 +1,28 @@
{ lib { lib
, stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchFromGitHub
, setuptools
, pytestCheckHook , pytestCheckHook
}: }:
buildPythonPackage rec { buildPythonPackage {
pname = "yapsy"; pname = "yapsy";
version = "1.12.2"; version = "1.12.2-unstable-2023-03-29";
format = "setuptools"; pyproject = true;
src = fetchPypi { src = fetchFromGitHub {
pname = "Yapsy"; owner = "tibonihoo";
inherit version; repo = "yapsy";
sha256 = "12rznbnswfw0w7qfbvmmffr9r317gl1rqg36nijwzsklkjgks4fq"; rev = "6b487b04affb19ab40adbbc87827668bea0abcee";
hash = "sha256-QKZlUAhYMCCsT/jbEHb39ESZ2+2FZYnhJnc1PgsozBA=";
}; };
sourceRoot = "source/package";
build-system = [
setuptools
];
nativeCheckInputs = [ pytestCheckHook ]; nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "yapsy" ]; pythonImportsCheck = [ "yapsy" ];