about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorwisut hantanong <wizzup@gmail.com>2017-07-19 17:29:13 +0700
committerwisut hantanong <wizzup@gmail.com>2017-07-19 17:29:51 +0700
commitff6797e8aa0e3cca42acb7416f058d39eb0fa630 (patch)
tree08e64d1f43f5ee68dabd1d69c10e9853598c1b9a /pkgs/top-level
parent4206da05b0618f36615f5cf7d89118f2a5045325 (diff)
downloadnixlib-ff6797e8aa0e3cca42acb7416f058d39eb0fa630.tar
nixlib-ff6797e8aa0e3cca42acb7416f058d39eb0fa630.tar.gz
nixlib-ff6797e8aa0e3cca42acb7416f058d39eb0fa630.tar.bz2
nixlib-ff6797e8aa0e3cca42acb7416f058d39eb0fa630.tar.lz
nixlib-ff6797e8aa0e3cca42acb7416f058d39eb0fa630.tar.xz
nixlib-ff6797e8aa0e3cca42acb7416f058d39eb0fa630.tar.zst
nixlib-ff6797e8aa0e3cca42acb7416f058d39eb0fa630.zip
python.pkgs.aniso8601 : move to separate expression
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/python-packages.nix18
1 files changed, 1 insertions, 17 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 7d977a6eaac6..102db6618119 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -311,23 +311,7 @@ in {
 
   ansicolors = callPackage ../development/python-modules/ansicolors {};
 
-  aniso8601 = buildPythonPackage rec {
-    name = "aniso8601-${version}";
-    version = "1.2.0";
-
-    meta = {
-      description = "Parses ISO 8601 strings.";
-      homepage    = "https://bitbucket.org/nielsenb/aniso8601";
-      license     = licenses.bsd3;
-    };
-
-    propagatedBuildInputs = with self; [ dateutil ];
-
-    src = pkgs.fetchurl {
-      url = "mirror://pypi/a/aniso8601/${name}.tar.gz";
-      sha256 = "502400f82574afa804cc915d83f15c67533d364dcd594f8a6b9d2053f3404dd4";
-    };
-  };
+  aniso8601 = callPackage ../development/python-modules/aniso8601 {};
 
   asgiref = callPackage ../development/python-modules/asgiref { };