9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
33 lines
858 B
Nix
33 lines
858 B
Nix
{ buildPythonPackage
|
|
, fetchFromGitHub
|
|
, lib
|
|
, simplejson
|
|
, six
|
|
, typechecks
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "serializable";
|
|
version = "unstable-2023-07-13";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "iskandr";
|
|
repo = pname;
|
|
# See https://github.com/iskandr/serializable/issues/7. As of 2023-07-13,
|
|
# they do no have version tags.
|
|
rev = "ed309a6f8f2590b525fc0f93c00549223c8c944f";
|
|
hash = "sha256-AXlgIc1B7bkR+joXn6ZSxk/t848CWlgVZp8WIsSZFKQ=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ simplejson six typechecks ];
|
|
|
|
pythonImportsCheck = [ "serializable" ];
|
|
|
|
meta = with lib; {
|
|
description = "Base class with serialization methods for user-defined Python objects";
|
|
homepage = "https://github.com/iskandr/serializable";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ samuela ];
|
|
};
|
|
}
|