summary refs log tree commit diff
path: root/pkgs/development/python-modules/libais
diff options
context:
space:
mode:
authorLancelot SIX <lsix+github@lancelotsix.com>2018-04-11 17:25:47 +0200
committerRobert Schütz <rschuetz17@gmail.com>2018-04-11 17:25:47 +0200
commit21943e06bfa68ac24c8882cba6687335c9533013 (patch)
tree2238e7161ef30921199ecfa3001a2917d9c73ec9 /pkgs/development/python-modules/libais
parent35121b19734962f8b81187fdd70235f209f475f5 (diff)
downloadnixpkgs-21943e06bfa68ac24c8882cba6687335c9533013.tar
nixpkgs-21943e06bfa68ac24c8882cba6687335c9533013.tar.gz
nixpkgs-21943e06bfa68ac24c8882cba6687335c9533013.tar.bz2
nixpkgs-21943e06bfa68ac24c8882cba6687335c9533013.tar.lz
nixpkgs-21943e06bfa68ac24c8882cba6687335c9533013.tar.xz
nixpkgs-21943e06bfa68ac24c8882cba6687335c9533013.tar.zst
nixpkgs-21943e06bfa68ac24c8882cba6687335c9533013.zip
pythonPackages.libais: 0.16 -> 0.17 (#37876)
Diffstat (limited to 'pkgs/development/python-modules/libais')
-rw-r--r--pkgs/development/python-modules/libais/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/libais/default.nix b/pkgs/development/python-modules/libais/default.nix
index 5d8c886e00b..5261a7b6564 100644
--- a/pkgs/development/python-modules/libais/default.nix
+++ b/pkgs/development/python-modules/libais/default.nix
@@ -1,20 +1,19 @@
-{ stdenv, buildPythonPackage, fetchurl,
+{ stdenv, buildPythonPackage, fetchPypi,
   six, pytest, pytestrunner, pytestcov, coverage
 }:
 buildPythonPackage rec {
   pname = "libais";
-  name = "${pname}-${version}";
-  version = "0.16";
+  version = "0.17";
 
-  src = fetchurl {
-    url = "mirror://pypi/l/libais/${name}.tar.bz2";
-    sha256 = "14dsh5k32ryszwdn6p45wrqp4ska6cc9qpm6lk5c5d1p4rc7wnhq";
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0pyka09h8nb0vlzh14npq4nxmzg1046lr3klgn97dsf5k0iflapb";
   };
 
   # data files missing
   doCheck = false;
 
-  buildInputs = [ pytest pytestrunner pytestcov coverage ];
+  checkInputs = [ pytest pytestrunner pytestcov coverage ];
   propagatedBuildInputs = [ six ];
 
   meta = with stdenv.lib; {