summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-utils
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/python-utils
parent4ae5f314037867369c2b0e38a7587d2db393268f (diff)
pythonPackages: Add version and pname attributes to packages
Diffstat (limited to 'pkgs/development/python-modules/python-utils')
-rw-r--r--pkgs/development/python-modules/python-utils/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/python-utils/default.nix b/pkgs/development/python-modules/python-utils/default.nix
index 6acd0934f471..37c15c07537e 100644
--- a/pkgs/development/python-modules/python-utils/default.nix
+++ b/pkgs/development/python-modules/python-utils/default.nix
@@ -1,8 +1,9 @@
{ lib, buildPythonPackage, fetchFromGitHub, pytest, pytestrunner, pytestcov, pytestflakes, pytestpep8, sphinx, six }:
buildPythonPackage rec {
- name = "python-utils-${version}";
+ pname = "python-utils";
version = "2.2.0";
+ name = pname + "-" + version;
src = fetchFromGitHub {
owner = "WoLpH";