blob: 17af66042e677104bbe04f3963c653a958bae9c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{
lib,
buildPythonPackage,
fetchPypi,
stdenv,
cppy,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "kiwisolver";
version = "1.4.8";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-I9XwI73Ix+VOtl8Dyl1bsltgHqxNfxoEKIih9FI3mH4=";
};
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-I${lib.getInclude stdenv.cc.libcxx}/include/c++/v1";
nativeBuildInputs = [ setuptools-scm ];
buildInputs = [ cppy ];
pythonImportsCheck = [ "kiwisolver" ];
meta = {
description = "Implementation of the Cassowary constraint solver";
homepage = "https://github.com/nucleic/kiwi";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|