mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-09 04:46:51 +01:00
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.
40 lines
727 B
Nix
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 ];
|
|
};
|
|
})
|