Files
nixpkgs/pkgs/development/python-modules/kiwisolver/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

39 lines
774 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
stdenv,
libcxx,
cppy,
setuptools-scm,
pythonOlder,
}:
buildPythonPackage rec {
pname = "kiwisolver";
version = "1.4.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-5X5WOlf7IqFC2jTziswvwaXIZLwpyhUXqIq8lj5g1uw=";
};
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1";
nativeBuildInputs = [ setuptools-scm ];
buildInputs = [ cppy ];
pythonImportsCheck = [ "kiwisolver" ];
meta = with lib; {
description = "Implementation of the Cassowary constraint solver";
homepage = "https://github.com/nucleic/kiwi";
license = licenses.bsd3;
maintainers = [ ];
};
}