about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-27 09:17:53 -0400
committerChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-30 00:50:44 -0400
commit50ec0b1724bc65caa9eae8874bfa09f90444d692 (patch)
tree2d22ee14dce78a51663bf73bee57e7f565fc5d3e
parente063c490b42b96604e84375593af50fd81cf67ca (diff)
downloadnixlib-50ec0b1724bc65caa9eae8874bfa09f90444d692.tar
nixlib-50ec0b1724bc65caa9eae8874bfa09f90444d692.tar.gz
nixlib-50ec0b1724bc65caa9eae8874bfa09f90444d692.tar.bz2
nixlib-50ec0b1724bc65caa9eae8874bfa09f90444d692.tar.lz
nixlib-50ec0b1724bc65caa9eae8874bfa09f90444d692.tar.xz
nixlib-50ec0b1724bc65caa9eae8874bfa09f90444d692.tar.zst
nixlib-50ec0b1724bc65caa9eae8874bfa09f90444d692.zip
pythonPackages.timelib: refactor move to python-modules
-rw-r--r--pkgs/development/python-modules/timelib/default.nix22
-rw-r--r--pkgs/top-level/python-packages.nix17
2 files changed, 23 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/timelib/default.nix b/pkgs/development/python-modules/timelib/default.nix
new file mode 100644
index 000000000000..39ff4b6de15e
--- /dev/null
+++ b/pkgs/development/python-modules/timelib/default.nix
@@ -0,0 +1,22 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "timelib";
+  version = "0.2.4";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "49142233bdb5971d64a41e05a1f80a408a02be0dc7d9f8c99e7bdd0613ba81cb";
+  };
+
+  meta = with stdenv.lib; {
+    description = "Parse english textual date descriptions";
+    homepage = "https://github.com/pediapress/timelib/";
+    license = licenses.zlib;
+  };
+
+}
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index cb9142bb3c01..0f7b0ebd83fb 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -3786,22 +3786,7 @@ in {
 
   tilestache = callPackage ../development/python-modules/tilestache { };
 
-  timelib = buildPythonPackage rec {
-    name = "timelib-0.2.4";
-
-    src = pkgs.fetchurl {
-      url = "mirror://pypi/t/timelib/${name}.zip";
-      sha256 = "49142233bdb5971d64a41e05a1f80a408a02be0dc7d9f8c99e7bdd0613ba81cb";
-    };
-
-    buildInputs = with self; [ ];
-
-    meta = {
-      description = "Parse english textual date descriptions";
-      homepage = "https://github.com/pediapress/timelib/";
-      license = licenses.zlib;
-    };
-  };
+  timelib = callPackage ../development/python-modules/timelib { };
 
   timeout-decorator = callPackage ../development/python-modules/timeout-decorator { };