mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
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.
48 lines
884 B
Nix
48 lines
884 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, attrs
|
|
, pytestCheckHook
|
|
, typish
|
|
, tzdata
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jsons";
|
|
version = "1.6.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ramonhagenaars";
|
|
repo = "jsons";
|
|
rev = "v${version}";
|
|
sha256 = "0sdwc57f3lwzhbcapjdbay9f8rn65rlspxa67a2i5apcgg403qpc";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
typish
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
attrs
|
|
pytestCheckHook
|
|
tzdata
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# These tests are based on timings, which fail
|
|
# on slow or overloaded machines.
|
|
"tests/test_performance.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"jsons"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Turn Python objects into dicts or json strings and back";
|
|
homepage = "https://github.com/ramonhagenaars/jsons";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fmoda3 ];
|
|
};
|
|
}
|