depot/third_party/nixpkgs/pkgs/development/python-modules/undefined/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

28 lines
572 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 = with maintainers; [ ];
};
}