nixpkgs/pkgs/development/python-modules/kiwisolver/default.nix

34 lines
639 B
Nix
Raw Normal View History

2018-04-05 20:07:22 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, stdenv
, libcxx
2020-06-07 10:15:34 +01:00
, cppy
2018-04-05 20:07:22 +01:00
}:
buildPythonPackage rec {
pname = "kiwisolver";
2020-06-06 07:47:16 +01:00
version = "1.2.0";
2018-04-05 20:07:22 +01:00
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:16 +01:00
sha256 = "247800260cd38160c362d211dcaf4ed0f7816afb5efe56544748b21d6ad6d17f";
2018-04-05 20:07:22 +01:00
};
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
2020-06-07 10:15:34 +01:00
nativeBuildInputs = [
cppy
];
2018-04-05 20:07:22 +01: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 20:07:22 +01:00
license = lib.licenses.bsd3;
};
}