3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/pymarshal/default.nix
yuu 872ccff6c2 python3Packages.pymarshal: init at 2.2.0
Co-authored-by: Jonathan Ringer <jonringer117@gmail.com>
2021-11-09 08:13:10 -08:00

52 lines
862 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, bson
, pytest
, pytest-cov
, pytest-runner
, pytestCheckHook
, pyyaml
, setuptools
}:
buildPythonPackage rec {
pname = "pymarshal";
version = "2.2.0";
disabled = pythonOlder "3.0";
src = fetchFromGitHub {
owner = "stargateaudio";
repo = pname;
rev = version;
sha256 = "sha256-Ds8JV2mtLRcKXBvPs84Hdj3MxxqpeV5muKCSlAFCj1A=";
};
nativeBuildInputs = [
setuptools
pytest-runner
];
propagatedBuildInputs = [
bson
];
checkInputs = [
pytestCheckHook
bson
pytest
pytest-cov
pyyaml
];
pytestFlagsArray = [ "test" ];
meta = {
description = "Python data serialization library";
homepage = "https://github.com/stargateaudio/pymarshal";
maintainers = with lib.maintainers; [ yuu ];
license = lib.licenses.bsd2;
};
}