Files
nixpkgs/pkgs/development/python-modules/kiwisolver/default.nix
T
Artturin e1fe0fe490 python310Packages.kiwisolver: move NIX_CFLAGS_COMPILE out of env
this will be reapplied to staging because it causes rebuilds
2023-02-24 05:39:54 +02:00

46 lines
801 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, stdenv
, libcxx
, cppy
, setuptools-scm
, pythonOlder
}:
buildPythonPackage rec {
pname = "kiwisolver";
version = "1.4.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-1BmXUZ/LpKHkbrSi/jG8EvD/lXsrgbrCjbJHRPMz6VU=";
};
NIX_CFLAGS_COMPILE = lib.optionals 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 = with maintainers; [ ];
};
}