blob: b3771fdb207342bedc757832090aeb80e23aa03c (
about) (
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
35
36
|
{
lib,
buildPythonPackage,
fetchPypi,
numpy,
setuptools,
}:
buildPythonPackage rec {
pname = "wrapcco";
version = "0.1.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-nts5cujixB+PfAf9Fk7kOXW4BeI/0q5GYTthCI76ZOA=";
};
build-system = [ setuptools ];
dependencies = [
numpy
setuptools
];
# require non trivial test setup
doCheck = false;
pythonImportsCheck = [ "wrapcco" ];
meta = {
description = "Supercharge Python with C++ extensions!";
homepage = "https://github.com/H3cth0r/wrapc.co";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ h3cth0r ];
};
}
|