summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2017-10-21 04:14:39 +0300
committerNikolay Amiantov <ab@fmap.me>2017-10-22 04:18:37 +0300
commitc3f8fb3cd78ce8dc776d929f752edc8ca54bf727 (patch)
treeb1793628e9f618e4793f34bc20c3a2cb3f1c0b1e /pkgs/development
parent6c5184fff782b1792d2577b071c2e33087530a13 (diff)
downloadnixlib-c3f8fb3cd78ce8dc776d929f752edc8ca54bf727.tar
nixlib-c3f8fb3cd78ce8dc776d929f752edc8ca54bf727.tar.gz
nixlib-c3f8fb3cd78ce8dc776d929f752edc8ca54bf727.tar.bz2
nixlib-c3f8fb3cd78ce8dc776d929f752edc8ca54bf727.tar.lz
nixlib-c3f8fb3cd78ce8dc776d929f752edc8ca54bf727.tar.xz
nixlib-c3f8fb3cd78ce8dc776d929f752edc8ca54bf727.tar.zst
nixlib-c3f8fb3cd78ce8dc776d929f752edc8ca54bf727.zip
python.pkgs.uranium: 2.6.1 -> 3.0.3
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/uranium/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/uranium/default.nix b/pkgs/development/python-modules/uranium/default.nix
index 36b8711d7c1a..2e4a232f1f1e 100644
--- a/pkgs/development/python-modules/uranium/default.nix
+++ b/pkgs/development/python-modules/uranium/default.nix
@@ -5,7 +5,7 @@ then throw "Uranium not supported for interpreter ${python.executable}"
 else
 
 stdenv.mkDerivation rec {
-  version = "2.6.1";
+  version = "3.0.3";
   pname = "uranium";
   name = "${pname}-${version}";
   
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
     owner = "Ultimaker";
     repo = "Uranium";
     rev = version;
-    sha256 = "1682xwxf6xs1d1cfv1s7xnabqv58jjdb6szz8624b3k9rsj5l2yq";
+    sha256 = "1pyzpcdb6kb0basvhgpjdiws8x0bwl71k7nkf3j3s9wk1dvyw824";
   };
   
   buildInputs = [ python gettext ];
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "A Python framework for building Desktop applications";
-    homepage = https://github.com/Ultimaker/Uranium;
+    homepage = "https://github.com/Ultimaker/Uranium";
     license = licenses.agpl3;
     platforms = platforms.linux;
     maintainers = with maintainers; [ abbradar ];