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
45 lines
1.0 KiB
Nix
45 lines
1.0 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, pytestCheckHook
|
|
, pytest
|
|
, inflection
|
|
, factory_boy
|
|
, pytestcache
|
|
, pytestcov
|
|
, mock
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-factoryboy";
|
|
version = "2.0.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pytest-dev";
|
|
repo = "pytest-factoryboy";
|
|
rev = version;
|
|
sha256 = "0m1snyybq2k51khlydhisq300vzys897vdbsicph628iran950hn";
|
|
};
|
|
|
|
# TODO: remove in next release, it's removed in master.
|
|
postPatch = "substituteInPlace tox.ini --replace '--pep8' ''";
|
|
|
|
propagatedBuildInputs = [ factory_boy inflection pytest ];
|
|
|
|
# The project uses tox, which we can't. So we simply run pytest manually.
|
|
checkInputs = [
|
|
mock
|
|
pytestCheckHook
|
|
pytestcache
|
|
pytestcov
|
|
];
|
|
pytestFlagsArray = [ "--ignore=docs" ];
|
|
|
|
meta = with lib; {
|
|
description = "Integration of factory_boy into the pytest runner.";
|
|
homepage = "https://pytest-factoryboy.readthedocs.io/en/latest/";
|
|
maintainers = with maintainers; [ winpat ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|