mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
21 lines
489 B
Nix
21 lines
489 B
Nix
{ stdenv, 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 stdenv.lib; {
|
|
homepage = "https://gitlab.com/betamax/serializers";
|
|
description = "A set of third-party serializers for Betamax";
|
|
license = licenses.asl20;
|
|
};
|
|
}
|