tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.datasette-publish-fly: init at 1.2
Fabian Affolter
3 years ago
3287eaae
3a835b51
+47
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
datasette-publish-fly
default.nix
top-level
python-packages.nix
+45
pkgs/development/python-modules/datasette-publish-fly/default.nix
···
1
1
+
{ lib
2
2
+
, buildPythonPackage
3
3
+
, cogapp
4
4
+
, datasette
5
5
+
, fetchFromGitHub
6
6
+
, pytest-mock
7
7
+
, pytestCheckHook
8
8
+
, pythonOlder
9
9
+
}:
10
10
+
11
11
+
buildPythonPackage rec {
12
12
+
pname = "datasette-publish-fly";
13
13
+
version = "1.2";
14
14
+
format = "setuptools";
15
15
+
16
16
+
disabled = pythonOlder "3.7";
17
17
+
18
18
+
src = fetchFromGitHub {
19
19
+
owner = "simonw";
20
20
+
repo = pname;
21
21
+
rev = version;
22
22
+
hash = "sha256-0frP/RkpZX6LCR8cOlzcBG3pbcOh0KPuELlYUXS3dRE=";
23
23
+
};
24
24
+
25
25
+
propagatedBuildInputs = [
26
26
+
datasette
27
27
+
];
28
28
+
29
29
+
checkInputs = [
30
30
+
cogapp
31
31
+
pytest-mock
32
32
+
pytestCheckHook
33
33
+
];
34
34
+
35
35
+
pythonImportsCheck = [
36
36
+
"datasette_publish_fly"
37
37
+
];
38
38
+
39
39
+
meta = with lib; {
40
40
+
description = "Datasette plugin for publishing data using Fly";
41
41
+
homepage = "https://datasette.io/plugins/datasette-publish-fly";
42
42
+
license = licenses.asl20;
43
43
+
maintainers = with maintainers; [ fab ];
44
44
+
};
45
45
+
}
+2
pkgs/top-level/python-packages.nix
···
2173
2173
2174
2174
datasette = callPackage ../development/python-modules/datasette { };
2175
2175
2176
2176
+
datasette-publish-fly = callPackage ../development/python-modules/datasette-publish-fly { };
2177
2177
+
2176
2178
datasette-template-sql = callPackage ../development/python-modules/datasette-template-sql { };
2177
2179
2178
2180
datashader = callPackage ../development/python-modules/datashader { };