Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / undefined / default.nix
blob5348688680e1cf0834cee337189b1676c11bce84
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , flit
5 }:
7 buildPythonPackage rec {
8   pname = "undefined";
9   version = "0.0.8";
10   pyproject = true;
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-xvI3wOPX51GWlLIb1HHcJe48M3nZwjt06/Aqo0nFz/c=";
15   };
17   nativeBuildInputs = [
18     flit
19   ];
21   pythonImportsCheck = [
22     "undefined"
23   ];
25   meta = with lib; {
26     description = "Ever needed a global object that act as None but not quite?";
27     homepage = "https://github.com/Carreau/undefined";
28     license = licenses.mit;
29     maintainers = with maintainers; [ ];
30   };