mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
53 lines
981 B
Nix
53 lines
981 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, bson
|
|
, 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=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "'pytest-runner'" ""
|
|
substituteInPlace setup.cfg \
|
|
--replace "--cov=pymarshal --cov-report=html --cov-report=term" ""
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
bson
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
bson
|
|
pyyaml
|
|
];
|
|
|
|
pytestFlagsArray = [ "test" ];
|
|
|
|
meta = {
|
|
description = "Python data serialization library";
|
|
homepage = "https://github.com/stargateaudio/pymarshal";
|
|
maintainers = with lib.maintainers; [ yuu ];
|
|
license = lib.licenses.bsd2;
|
|
};
|
|
}
|