nixpkgs/pkgs/development/python-modules/shared/default.nix
Fabian Affolter b02d2109a5 python313Packages.shared: init at 0.0.9
Data exchange and persistence based on human-readable files

https://github.com/pyrustic/shared
2026-01-14 14:10:02 +01:00

43 lines
873 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
kvf,
paradict,
probed,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "shared";
version = "0.0.9";
pyproject = true;
src = fetchFromGitHub {
owner = "pyrustic";
repo = "shared";
tag = "v${finalAttrs.version}";
hash = "sha256-roczP6WxpZ1AHjaD7XyjxYgb7hsP8a7hC6A3SYPNobQ=";
};
build-system = [ setuptools ];
dependencies = [
kvf
paradict
probed
];
pythonImportsCheck = [ "shared" ];
# Module has no tests
doCheck = false;
meta = {
description = "Data exchange and persistence based on human-readable files";
homepage = "https://github.com/pyrustic/shared";
changelog = "https://github.com/pyrustic/shared/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
})