depot/third_party/nixpkgs/pkgs/development/python-modules/jaraco_functools/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

36 lines
735 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, more-itertools
, setuptools-scm
}:
buildPythonPackage rec {
pname = "jaraco.functools";
version = "3.5.2";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-RbBcFY860ocxB1VW/9R0m9JU7Gf5Hh6zZ9z+v/EVHbQ=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
more-itertools
];
doCheck = false;
pythonNamespaces = [ "jaraco" ];
pythonImportsCheck = [ "jaraco.functools" ];
meta = with lib; {
description = "Additional functools in the spirit of stdlib's functools";
homepage = "https://github.com/jaraco/jaraco.functools";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}