If a Python package does not come with either `format` or `pyproject` we consider it a setuptools build, that calls `setup.py` directly, which is deprecated. This change, as a first step, migrates a large chunk of these packages to set setuptools as their explicit format This is so we can unify the problem space for the next step of the migration.
27 lines
625 B
Nix
27 lines
625 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
# Is required for properly testing mkdocs-macros
|
|
buildPythonPackage rec {
|
|
pname = "mkdocs-macros-test";
|
|
version = "0.1.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256:1w12skm8l0r2x6z1va996lvq6z1873d0xzql9n0aja0g0v6s7ay5";
|
|
};
|
|
|
|
pythonImportsCheck = [ "mkdocs_macros_test" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/fralau/mkdocs-macros-test";
|
|
description = "Implementation of a (model) pluglet for mkdocs-macros";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ tljuniper ];
|
|
};
|
|
}
|