nixpkgs/pkgs/development/python-modules/toml-adapt/default.nix
2022-11-04 08:47:16 +01:00

49 lines
844 B
Nix

{ lib
, buildPythonPackage
, click
, fetchFromGitHub
, poetry-core
, pytestCheckHook
, pythonOlder
, toml
}:
buildPythonPackage rec {
pname = "toml-adapt";
version = "0.2.10";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "firefly-cpp";
repo = pname;
rev = version;
sha256 = "sha256-eVRiMwdYDS2YdQsINy8lBzV8lhcKgq+Vwlc02C5ar0Q=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
click
toml
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"toml_adapt"
];
meta = with lib; {
description = "A simple Command-line interface for manipulating toml files";
homepage = "https://github.com/firefly-cpp/toml-adapt";
license = licenses.mit;
maintainers = with maintainers; [ firefly-cpp ];
};
}