depot/third_party/nixpkgs/pkgs/development/python-modules/traitlets/default.nix

31 lines
624 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
, hatchling
}:
buildPythonPackage rec {
pname = "traitlets";
version = "5.10.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-9YTqIJJARm5m6R88gap9AEukz3lJkLDHdZOKFUQhfNE=";
};
nativeBuildInputs = [ hatchling ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Traitlets Python config system";
homepage = "https://github.com/ipython/traitlets";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}