71b5635bb9
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-betamax-serializers/versions
21 lines
487 B
Nix
21 lines
487 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;
|
|
};
|
|
}
|