nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / development / ocaml-modules / pyml / default.nix
blob2d63152d9f6b3570eb23f12a856b6178ebdbb0d4
2   buildDunePackage,
3   lib,
4   fetchFromGitHub,
5   utop,
6   python3,
7   stdcompat,
8 }:
10 buildDunePackage rec {
11   pname = "pyml";
12   version = "20231101";
14   src = fetchFromGitHub {
15     owner = "thierry-martinez";
16     repo = "pyml";
17     rev = version;
18     sha256 = "sha256-0Yy5T/S3Npwt0XJmEsdXGg5AXYi9vV9UG9nMSzz/CEc=";
19   };
21   buildInputs = [
22     utop
23   ];
25   propagatedBuildInputs = [
26     python3
27     stdcompat
28   ];
30   nativeCheckInputs = [
31     python3.pkgs.numpy
32     python3.pkgs.ipython
33   ];
35   strictDeps = true;
37   doCheck = true;
39   meta = {
40     description = "OCaml bindings for Python";
41     homepage = "https://github.com/thierry-martinez/pyml";
42     license = lib.licenses.bsd2;
43   };