summary refs log tree commit diff
path: root/pkgs/development/python-modules/thinc
diff options
context:
space:
mode:
authoradisbladis <adis@blad.is>2017-11-09 19:26:09 +0800
committerFrederik Rietdijk <fridh@fridh.nl>2017-11-23 17:49:43 +0100
commitd99378654f97e7f62393514b36886c0b14d04e99 (patch)
tree49929a7437e9e7aaaa663e5511a5010881eef540 /pkgs/development/python-modules/thinc
parent4ae5f314037867369c2b0e38a7587d2db393268f (diff)
downloadnixlib-d99378654f97e7f62393514b36886c0b14d04e99.tar
nixlib-d99378654f97e7f62393514b36886c0b14d04e99.tar.gz
nixlib-d99378654f97e7f62393514b36886c0b14d04e99.tar.bz2
nixlib-d99378654f97e7f62393514b36886c0b14d04e99.tar.lz
nixlib-d99378654f97e7f62393514b36886c0b14d04e99.tar.xz
nixlib-d99378654f97e7f62393514b36886c0b14d04e99.tar.zst
nixlib-d99378654f97e7f62393514b36886c0b14d04e99.zip
pythonPackages: Add version and pname attributes to packages
Diffstat (limited to 'pkgs/development/python-modules/thinc')
-rw-r--r--pkgs/development/python-modules/thinc/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/thinc/default.nix b/pkgs/development/python-modules/thinc/default.nix
index 817ea6388f95..15794caf58b9 100644
--- a/pkgs/development/python-modules/thinc/default.nix
+++ b/pkgs/development/python-modules/thinc/default.nix
@@ -30,21 +30,22 @@ let
     version = "1.0.1";
 
     src = fetchPypi {
-      inherit pname version;      
+      inherit pname version;
       sha256 = "17zajiw4mjbkkv6ahp3xf025qglkj0805m9s41c45zryzj6p2h39";
     };
 
     doCheck = false; # fails to import support from test
   };
 in buildPythonPackage rec {
-  name = "thinc-${version}";
+  pname = "thinc";
   version = "6.5.1";
+  name = pname + "-" + version;
 
   src = fetchFromGitHub {
     owner = "explosion";
     repo = "thinc";
     rev = "v${version}";
-    sha256 = "008kmjsvanh6qgnpvsn3qacfcyprxirxbw4yfd8flyg7mxw793ws";    
+    sha256 = "008kmjsvanh6qgnpvsn3qacfcyprxirxbw4yfd8flyg7mxw793ws";
   };
 
   propagatedBuildInputs = [
@@ -67,14 +68,14 @@ in buildPythonPackage rec {
   ];
 
   doCheck = false;
-  
+
   # fails to import some modules
   # checkPhase = ''
   #   ${python.interpreter} -m pytest thinc/tests
   #   # cd thinc/tests
   #   # ${python.interpreter} -m unittest discover -p "*test*"
   # '';
-  
+
   meta = with stdenv.lib; {
     description = "Practical Machine Learning for NLP in Python";
     homepage = https://github.com/explosion/thinc;