python311Packages.undefined: init at 0.0.8
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
{ 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; [ ];
|
||||
};
|
||||
}
|
||||
@@ -16008,6 +16008,8 @@ self: super: with self; {
|
||||
|
||||
uncompyle6 = callPackage ../development/python-modules/uncompyle6 { };
|
||||
|
||||
undefined = callPackage ../development/python-modules/undefined { };
|
||||
|
||||
unearth = callPackage ../development/python-modules/unearth { };
|
||||
|
||||
unicodecsv = callPackage ../development/python-modules/unicodecsv { };
|
||||
|
||||
Reference in New Issue
Block a user