Files
nixpkgs/pkgs/development/python-modules/wrapcco/default.nix
2025-03-09 09:10:51 -06:00

37 lines
673 B
Nix

{
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 ];
};
}