Files
nixpkgs/pkgs/development/python-modules/undefined/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

29 lines
554 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
flit,
}:
buildPythonPackage rec {
pname = "undefined";
version = "0.0.8";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-xvI3wOPX51GWlLIb1HHcJe48M3nZwjt06/Aqo0nFz/c=";
};
nativeBuildInputs = [ flit ];
pythonImportsCheck = [ "undefined" ];
meta = with lib; {
description = "Ever needed a global object that act as None but not quite?";
homepage = "https://github.com/Carreau/undefined";
license = licenses.mit;
maintainers = [ ];
};
}