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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "1yqzwx204m4lxlpg04cwv6iwzmcpdzr19wvj97vvxchp0g4qg83d";
  };

  buildInputs = [ betamax pyyaml ];

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