blob: d71b613b58b8b5801fca7a01eeb89e0a2ad7c90e (
plain) (
blame)
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
35
36
37
38
|
{
lib,
buildPythonPackage,
fetchPypi,
stdenv,
libcxx,
cppy,
setuptools-scm,
pythonOlder,
}:
buildPythonPackage rec {
pname = "kiwisolver";
version = "1.4.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-5X5WOlf7IqFC2jTziswvwaXIZLwpyhUXqIq8lj5g1uw=";
};
env.NIX_CFLAGS_COMPILE = lib.optionalString 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 = [ ];
};
}
|