nixpkgs/pkgs/development/python-modules/chiapos/default.nix

54 lines
1.0 KiB
Nix
Raw Normal View History

2021-05-08 22:56:08 +00:00
{ lib
, substituteAll
, buildPythonPackage
, fetchPypi
, cmake
, cxxopts
, ghc_filesystem
, pybind11
, pytestCheckHook
2021-05-08 22:56:08 +00:00
, pythonOlder
, psutil
, setuptools-scm
}:
buildPythonPackage rec {
pname = "chiapos";
version = "1.0.7";
2021-05-08 22:56:08 +00:00
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "1e10ce00730d293ed83ed3a3c630d525c9256fe4e31e64abbda7aa054b8a753f";
2021-05-08 22:56:08 +00:00
};
patches = [
# prevent CMake from trying to get libraries on the Internet
(substituteAll {
src = ./dont_fetch_dependencies.patch;
inherit cxxopts ghc_filesystem;
pybind11_src = pybind11.src;
})
];
nativeBuildInputs = [ cmake setuptools-scm ];
buildInputs = [ pybind11 ];
checkInputs = [
psutil
pytestCheckHook
];
2021-05-08 22:56:08 +00:00
# CMake needs to be run by setuptools rather than by its hook
dontConfigure = true;
meta = with lib; {
description = "Chia proof of space library";
homepage = "https://www.chia.net/";
license = licenses.asl20;
maintainers = teams.chia.members;
};
}