linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / kiwisolver / default.nix
blobd4d62787092b12ab92b5f5f6be552bdde62e3066
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , stdenv
5 , libcxx
6 , cppy
7 }:
9 buildPythonPackage rec {
10   pname = "kiwisolver";
11   version = "1.3.1";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "950a199911a8d94683a6b10321f9345d5a3a8433ec58b217ace979e18f16e248";
16   };
18   NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
20   nativeBuildInputs = [
21     cppy
22   ];
24   # Does not include tests
25   doCheck = false;
27   meta = {
28     description = "A fast implementation of the Cassowary constraint solver";
29     homepage = "https://github.com/nucleic/kiwi";
30     license = lib.licenses.bsd3;
31   };