587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
31 lines
578 B
Nix
31 lines
578 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; [ ];
|
|
};
|
|
}
|