4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{ lib, stdenv, buildPythonPackage, fetchPypi
|
|
, pytest, setuptools_scm, isPy3k }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "apipkg";
|
|
version = "1.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "37228cda29411948b422fae072f57e31d3396d2ee1c9783775980ee9c9990af6";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools_scm ];
|
|
checkInputs = [ pytest ];
|
|
|
|
# Fix pytest 4 support. See: https://github.com/pytest-dev/apipkg/issues/14
|
|
postPatch = ''
|
|
substituteInPlace "test_apipkg.py" \
|
|
--replace "py.test.ensuretemp('test_apipkg')" "py.path.local('test_apipkg')"
|
|
'';
|
|
|
|
# Failing tests on Python 3
|
|
# https://github.com/pytest-dev/apipkg/issues/17
|
|
checkPhase = let
|
|
disabledTests = stdenv.lib.optionals isPy3k [
|
|
"test_error_loading_one_element"
|
|
"test_aliasmodule_proxy_methods"
|
|
"test_eagerload_on_bython"
|
|
];
|
|
testExpression = stdenv.lib.optionalString (disabledTests != [])
|
|
"-k 'not ${stdenv.lib.concatStringsSep " and not " disabledTests}'";
|
|
in ''
|
|
py.test ${testExpression}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Namespace control and lazy-import mechanism";
|
|
homepage = "https://github.com/pytest-dev/apipkg";
|
|
license = licenses.mit;
|
|
};
|
|
}
|