mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 03:34:58 +00:00
python.pkgs.betamax-serializers: init at 0.2.0
This commit is contained in:
parent
a5744101a2
commit
5413be5645
@ -0,0 +1,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;
|
||||
};
|
||||
}
|
@ -1329,6 +1329,7 @@ in {
|
||||
maintainers = with maintainers; [ pSub ];
|
||||
};
|
||||
};
|
||||
betamax-serializers = callPackage ../development/python-modules/betamax-serializers { };
|
||||
|
||||
bibtexparser = callPackage ../development/python-modules/bibtexparser { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user