nixpkgs/pkgs/development/python-modules/shared/default.nix
Michael Daniels a9d61ddd7d
python3Packages.shared: 0.0.27 -> 0.0.32
The existing version requires a package we haven't packaged yet,
and the new one doesn't.

But the new one isn't tagged on GitHub. (And the changelog no longer exists.)

Fixes build failure on staging-next.
2026-02-21 16:03:45 -05:00

40 lines
727 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
kvf,
paradict,
probed,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "shared";
version = "0.0.32";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-cwityVwNqxTQyZY1zYBJ0fAEzH/vc5bT/kcyPDTsWMY=";
};
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";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
})