075e8c2c4f
This is almost all find-and-replace. I manually edited: * pkgs/development/python-modules/notifications-android-tv/default.nix, * pkgs/servers/home-assistant/default.nix, * pkgs/development/tools/continuous-integration/buildbot/master.nix A few files have not been changed in this PR because they would cause rebuilds. This PR should have 0 rebuilds.
31 lines
666 B
Nix
31 lines
666 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pdm-backend,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "docopt-ng";
|
|
version = "0.9.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "docopt_ng";
|
|
inherit version;
|
|
hash = "sha256-kcbaELW7by6eJTRYKfuCeMeK8Bn2/ECIetSbBgSDsdc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pdm-backend ];
|
|
|
|
pythonImportsCheck = [ "docopt" ];
|
|
doCheck = false; # no tests in the package
|
|
|
|
meta = {
|
|
description = "More-magic command line arguments parser. Now with more maintenance";
|
|
homepage = "https://github.com/bazaar-projects/docopt-ng";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ fgaz ];
|
|
};
|
|
}
|