tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.sqlalchemy-json: refactor
natsukium
1 year ago
303a115d
b55dbc3f
+12
-12
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
sqlalchemy-json
default.nix
+12
-12
pkgs/development/python-modules/sqlalchemy-json/default.nix
···
3
3
buildPythonPackage,
4
4
fetchFromGitHub,
5
5
pytestCheckHook,
6
6
-
pythonOlder,
6
6
+
setuptools,
7
7
sqlalchemy,
8
8
}:
9
9
10
10
-
let
11
11
-
version = "0.7.0";
12
12
-
in
13
13
-
buildPythonPackage {
10
10
+
buildPythonPackage rec {
14
11
pname = "sqlalchemy-json";
15
15
-
inherit version;
16
16
-
17
17
-
disabled = pythonOlder "3.6";
12
12
+
version = "0.7.0";
13
13
+
pyproject = true;
18
14
19
15
src = fetchFromGitHub {
20
16
owner = "edelooff";
···
23
19
hash = "sha256-Is3DznojvpWYFSDutzCxRLceQMIiS3ZIg0c//MIOF+s=";
24
20
};
25
21
26
26
-
propagatedBuildInputs = [ sqlalchemy ];
22
22
+
build-system = [ setuptools ];
23
23
+
24
24
+
dependencies = [ sqlalchemy ];
25
25
+
26
26
+
pythonImportsCheck = [ "sqlalchemy_json" ];
27
27
28
28
nativeCheckInputs = [ pytestCheckHook ];
29
29
30
30
-
meta = with lib; {
30
30
+
meta = {
31
31
description = "Full-featured JSON type with mutation tracking for SQLAlchemy";
32
32
homepage = "https://github.com/edelooff/sqlalchemy-json";
33
33
changelog = "https://github.com/edelooff/sqlalchemy-json/tree/v${version}#changelog";
34
34
-
license = licenses.bsd2;
35
35
-
maintainers = with maintainers; [ augustebaum ];
34
34
+
license = lib.licenses.bsd2;
35
35
+
maintainers = with lib.maintainers; [ augustebaum ];
36
36
};
37
37
}