summary refs log tree commit diff
path: root/pkgs/development/python-modules/betamax-serializers/default.nix
blob: 0ddc9845bfa7926472af41b29ecfd3ac1c25191d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildPythonPackage, fetchPypi
, betamax, pyyaml }:

buildPythonPackage rec {
  pname = "betamax-serializers";
  version = "0.2.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0ja9isbjmzzhxdj69s0kdsvw8nkp073w6an6a4liy5vk3fdl2p1l";
  };

  buildInputs = [ betamax pyyaml ];

  meta = with lib; {
    homepage = "https://gitlab.com/betamax/serializers";
    description = "A set of third-party serializers for Betamax";
    license = licenses.asl20;
  };
}