python311Packages.undefined: init at 0.0.8

This commit is contained in:
Martin Weinelt
2024-03-12 18:24:43 +01:00
parent df4c310609
commit 431f2b2252
2 changed files with 33 additions and 0 deletions
@@ -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; [ ];
};
}
+2
View File
@@ -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 { };