forked from mirrors/nixpkgs
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
53 lines
987 B
Nix
53 lines
987 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
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
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;
|
|
};
|
|
}
|