Files
nixpkgs/pkgs/development/python-modules/python-packer/default.nix
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

37 lines
831 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
fetchpatch,
sh,
}:
buildPythonPackage rec {
pname = "python-packer";
version = "0.1.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "fd363dae9bd2efd447739bbf7a4f29c1e4741596ae7b02d252fe525b2b4176e7";
};
patches = fetchpatch {
url = "${meta.homepage}/commit/de3421bf13bf7c3ec11fe0a381f0944e102b1d97.patch";
excludes = [ "dev-requirements.txt" ];
sha256 = "0rgmkyn7i6y1xs8m75dpl8hq7j2ns2s3dvp7kv9j4zwic93rrlsc";
};
propagatedBuildInputs = [ sh ];
# Tests requires network connections
doCheck = false;
meta = {
description = "Interface for packer.io";
homepage = "https://github.com/nir0s/python-packer";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ psyanticy ];
};
}