Loading pkgs/development/python-modules/datasette-publish-fly/default.nix 0 → 100644 +45 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , cogapp , datasette , fetchFromGitHub , pytest-mock , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "datasette-publish-fly"; version = "1.2"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "simonw"; repo = pname; rev = version; hash = "sha256-0frP/RkpZX6LCR8cOlzcBG3pbcOh0KPuELlYUXS3dRE="; }; propagatedBuildInputs = [ datasette ]; checkInputs = [ cogapp pytest-mock pytestCheckHook ]; pythonImportsCheck = [ "datasette_publish_fly" ]; meta = with lib; { description = "Datasette plugin for publishing data using Fly"; homepage = "https://datasette.io/plugins/datasette-publish-fly"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -2175,6 +2175,8 @@ self: super: with self; { datasette = callPackage ../development/python-modules/datasette { }; datasette-publish-fly = callPackage ../development/python-modules/datasette-publish-fly { }; datasette-template-sql = callPackage ../development/python-modules/datasette-template-sql { }; datashader = callPackage ../development/python-modules/datashader { }; Loading Loading
pkgs/development/python-modules/datasette-publish-fly/default.nix 0 → 100644 +45 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , cogapp , datasette , fetchFromGitHub , pytest-mock , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "datasette-publish-fly"; version = "1.2"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "simonw"; repo = pname; rev = version; hash = "sha256-0frP/RkpZX6LCR8cOlzcBG3pbcOh0KPuELlYUXS3dRE="; }; propagatedBuildInputs = [ datasette ]; checkInputs = [ cogapp pytest-mock pytestCheckHook ]; pythonImportsCheck = [ "datasette_publish_fly" ]; meta = with lib; { description = "Datasette plugin for publishing data using Fly"; homepage = "https://datasette.io/plugins/datasette-publish-fly"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -2175,6 +2175,8 @@ self: super: with self; { datasette = callPackage ../development/python-modules/datasette { }; datasette-publish-fly = callPackage ../development/python-modules/datasette-publish-fly { }; datasette-template-sql = callPackage ../development/python-modules/datasette-template-sql { }; datashader = callPackage ../development/python-modules/datashader { }; Loading