summary refs log tree commit diff
path: root/pkgs/development/python-modules/marshmallow-sqlalchemy
diff options
context:
space:
mode:
authorbetaboon <betaboon@0x80.ninja>2017-09-01 10:27:02 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-09-07 09:28:02 +0200
commit820aa5fef983c50f83fd05664fe66cf705194290 (patch)
treeb0c21db2d68e5767b5421199d0bdba48b679ccdd /pkgs/development/python-modules/marshmallow-sqlalchemy
parent7a337231552d90c6c91ac4bc1edd4950b5d8c5ef (diff)
downloadnixpkgs-820aa5fef983c50f83fd05664fe66cf705194290.tar
nixpkgs-820aa5fef983c50f83fd05664fe66cf705194290.tar.gz
nixpkgs-820aa5fef983c50f83fd05664fe66cf705194290.tar.bz2
nixpkgs-820aa5fef983c50f83fd05664fe66cf705194290.tar.lz
nixpkgs-820aa5fef983c50f83fd05664fe66cf705194290.tar.xz
nixpkgs-820aa5fef983c50f83fd05664fe66cf705194290.tar.zst
nixpkgs-820aa5fef983c50f83fd05664fe66cf705194290.zip
pythonPackages.marshmallow-sqlalchemy: init at 0.13.1
Diffstat (limited to 'pkgs/development/python-modules/marshmallow-sqlalchemy')
-rw-r--r--pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix b/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix
new file mode 100644
index 00000000000..a024d73037f
--- /dev/null
+++ b/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix
@@ -0,0 +1,24 @@
+{ lib, buildPythonPackage, fetchPypi,
+  marshmallow, sqlalchemy
+}:
+
+buildPythonPackage rec {
+  pname = "marshmallow-sqlalchemy";
+  name = "${pname}-${version}";
+  version = "0.13.1";
+
+  meta = {
+    homepage = "https://github.com/marshmallow-code/marshmallow-sqlalchemy";
+    description = "SQLAlchemy integration with marshmallow ";
+    license = lib.licenses.mit;
+  };
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0082ca2wwc9bymzkp1mr1l5h6rq0k1csv3vcq8ab24x0hdyg5qgk";
+  };
+
+  propagatedBuildInputs = [ marshmallow sqlalchemy ];
+
+  doCheck = false;
+}