nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 30 lines 642 B view raw
1{ 2 buildPythonPackage, 3 fetchPypi, 4 lib, 5 nix-update-script, 6 hatch-vcs, 7}: 8 9buildPythonPackage rec { 10 pname = "manifestoo-core"; 11 version = "1.14"; 12 pyproject = true; 13 14 src = fetchPypi { 15 inherit version; 16 pname = "manifestoo_core"; 17 hash = "sha256-gjKkP+mYitpjDNqT3GZTQJzVtXmcl/0d0/LCk73B2h8="; 18 }; 19 20 nativeBuildInputs = [ hatch-vcs ]; 21 22 passthru.updateScript = nix-update-script { }; 23 24 meta = { 25 description = "Library to reason about Odoo addons manifests"; 26 homepage = "https://github.com/acsone/manifestoo-core"; 27 license = lib.licenses.lgpl3Only; 28 maintainers = with lib.maintainers; [ yajo ]; 29 }; 30}