summary refs log tree commit diff
path: root/pkgs/development/python-modules/umalqurra
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-28 12:26:19 -0400
committerChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-30 00:50:56 -0400
commit3af94ba30eda7fc050655d14c6e9c16ece77ec5b (patch)
treed39d9b8ebda6aa0e06559851e3918cf7f625b0d7 /pkgs/development/python-modules/umalqurra
parent6ee690466c4c9de3e76cd4b242cb6d11f3942925 (diff)
downloadnixpkgs-3af94ba30eda7fc050655d14c6e9c16ece77ec5b.tar
nixpkgs-3af94ba30eda7fc050655d14c6e9c16ece77ec5b.tar.gz
nixpkgs-3af94ba30eda7fc050655d14c6e9c16ece77ec5b.tar.bz2
nixpkgs-3af94ba30eda7fc050655d14c6e9c16ece77ec5b.tar.lz
nixpkgs-3af94ba30eda7fc050655d14c6e9c16ece77ec5b.tar.xz
nixpkgs-3af94ba30eda7fc050655d14c6e9c16ece77ec5b.tar.zst
nixpkgs-3af94ba30eda7fc050655d14c6e9c16ece77ec5b.zip
pythonPackages.umalqurra: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/umalqurra')
-rw-r--r--pkgs/development/python-modules/umalqurra/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/umalqurra/default.nix b/pkgs/development/python-modules/umalqurra/default.nix
new file mode 100644
index 00000000000..a41921a9d8c
--- /dev/null
+++ b/pkgs/development/python-modules/umalqurra/default.nix
@@ -0,0 +1,26 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "umalqurra";
+  version = "0.2";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "719f6a36f908ada1c29dae0d934dd0f1e1f6e3305784edbec23ad719397de678";
+  };
+
+  # No tests included
+  doCheck = false;
+
+  # See for license
+  # https://github.com/tytkal/python-hijiri-ummalqura/issues/4
+  meta = with stdenv.lib; {
+    description = "Date Api that support Hijri Umalqurra calendar";
+    homepage = https://github.com/tytkal/python-hijiri-ummalqura;
+    license = with licenses; [ publicDomain ];
+  };
+
+}