mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
32 lines
600 B
Nix
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 = [ ];
|
|
};
|
|
}
|