nixpkgs/pkgs/development/python-modules/ruamel-base/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

32 lines
600 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "ruamel-base";
version = "1.0.0";
format = "setuptools";
src = fetchPypi {
pname = "ruamel.base";
inherit version;
sha256 = "1wswxrn4givsm917mfl39rafgadimf1sldpbjdjws00g1wx36hf0";
};
# no tests
doCheck = false;
pythonImportsCheck = [ "ruamel.base" ];
pythonNamespaces = [ "ruamel" ];
meta = with lib; {
description = "Common routines for ruamel packages";
homepage = "https://sourceforge.net/projects/ruamel-base/";
license = licenses.mit;
maintainers = [ ];
};
}