mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 17:46:38 +01:00
Data exchange and persistence based on human-readable files https://github.com/pyrustic/shared
43 lines
873 B
Nix
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 ];
|
|
};
|
|
})
|