34 lines
635 B
Nix
Raw Normal View History

2018-04-05 21:07:22 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, stdenv
, libcxx
2020-06-07 11:15:34 +02:00
, cppy
2018-04-05 21:07:22 +02:00
}:
buildPythonPackage rec {
pname = "kiwisolver";
2020-06-06 08:47:16 +02:00
version = "1.2.0";
2018-04-05 21:07:22 +02:00
src = fetchPypi {
inherit pname version;
2020-06-06 08:47:16 +02:00
sha256 = "247800260cd38160c362d211dcaf4ed0f7816afb5efe56544748b21d6ad6d17f";
2018-04-05 21:07:22 +02:00
};
2020-08-25 12:07:09 +10:00
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
2020-08-25 12:07:09 +10:00
2020-06-07 11:15:34 +02:00
nativeBuildInputs = [
cppy
];
2018-04-05 21:07:22 +02:00
# Does not include tests
doCheck = false;
meta = {
description = "A fast implementation of the Cassowary constraint solver";
homepage = "https://github.com/nucleic/kiwi";
2018-04-05 21:07:22 +02:00
license = lib.licenses.bsd3;
};
}