Files
nixpkgs/pkgs/development/python-modules/expandvars/default.nix
Martin Weinelt 31d3bd5584 python3Packages.expandvars: 0.12.0 -> 1.0.0
This commit was automatically generated using update-python-libraries.
2025-04-03 23:12:18 +02:00

39 lines
714 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
# build-system
hatchling,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "expandvars";
version = "1.0.0";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-8EBwuCYCZBhfgRQs2F5d+c7vcinoNsWEQwLEzPoAww0=";
};
nativeBuildInputs = [ hatchling ];
pythonImportsCheck = [ "expandvars" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Expand system variables Unix style";
homepage = "https://github.com/sayanarijit/expandvars";
license = licenses.mit;
maintainers = with maintainers; [ geluk ];
};
}