Loading
+12 −10
Original line number Diff line number Diff line
@@ -8,8 +8,11 @@

  # propagates
  cbor2,
  colorama,
  python-dateutil,
  pyyaml,
  rich-argparse,
  ruamel-yaml,
  tomlkit,
  u-msgpack-python,

@@ -19,26 +22,25 @@

buildPythonPackage rec {
  pname = "remarshal";
  version = "0.17.1";
  format = "pyproject";
  version = "0.20.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "dbohdan";
    repo = pname;
    repo = "remarshal";
    rev = "refs/tags/v${version}";
    hash = "sha256-2WxMh5P/8NvElymnMU3JzQU0P4DMXFF6j15OxLaS+VA=";
    hash = "sha256-Fy+K0fM+vjZp8u7C0ElFa1xQM/CIMqFALe42gZRBNOs=";
  };

  nativeBuildInputs = [
    poetry-core
  ];

  pythonRelaxDeps = [ "pytest" ];
  build-system = [ poetry-core ];

  propagatedBuildInputs = [
  dependencies = [
    cbor2
    colorama
    python-dateutil
    pyyaml
    rich-argparse
    ruamel-yaml
    tomlkit
    u-msgpack-python
  ];