ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / chiabip158 / default.nix
blobb9615fec7b6b32eb413f296b8955527b6ed06b9a
1 { stdenv
2 , lib
3 , buildPythonPackage
4 , fetchPypi
5 , cmake
6 , pybind11
7 , pythonOlder
8 , pytestCheckHook
9 , setuptools-scm
12 buildPythonPackage rec {
13   pname = "chiabip158";
14   version = "1.2";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-t0Fnsh9B83KiT5dFVVfHs7sm9HyNbMsp6goj3esoph8=";
20   };
22   nativeBuildInputs = [ cmake setuptools-scm ];
24   buildInputs = [ pybind11 ];
26   checkInputs = [
27     pytestCheckHook
28   ];
30   # CMake needs to be run by setuptools rather than by its hook
31   dontConfigure = true;
33   meta = with lib; {
34     broken = stdenv.isDarwin;
35     description = "Chia's implementation of BIP 158";
36     homepage = "https://www.chia.net/";
37     license = licenses.asl20;
38     maintainers = teams.chia.members;
39   };