lol

python.pkgs.python_simple_hipchat: move out of python-packages

+24 -12
+21
pkgs/development/python-modules/python-simple-hipchat/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi 2 + , unzip }: 3 + 4 + buildPythonPackage rec { 5 + name = "${pname}-${version}"; 6 + pname = "python-simple-hipchat"; 7 + version = "0.4.0"; 8 + 9 + src = fetchPypi { 10 + inherit pname version; 11 + sha256 = "0zy6prrj85jjc4xmxgfg8h94j81k6zhfxfffcbvq9b10jis1rgav"; 12 + }; 13 + 14 + buildInputs = [ unzip ]; 15 + 16 + meta = with stdenv.lib; { 17 + description = "Easy peasy wrapper for HipChat's v1 API"; 18 + homepage = https://github.com/kurttheviking/simple-hipchat-py; 19 + license = licenses.mit; 20 + }; 21 + }
+3 -12
pkgs/top-level/python-packages.nix
··· 17822 17822 ''; 17823 17823 }); 17824 17824 17825 - python_simple_hipchat = buildPythonPackage rec { 17826 - name = "python-simple-hipchat-${version}"; 17827 - version = "0.4.0"; 17828 - 17829 - src = pkgs.fetchurl { 17830 - url = "mirror://pypi/p/python-simple-hipchat/python-simple-hipchat-${version}.tar.gz"; 17831 - sha256 = "0zy6prrj85jjc4xmxgfg8h94j81k6zhfxfffcbvq9b10jis1rgav"; 17832 - }; 17833 - 17834 - buildInputs = [ pkgs.unzip ]; 17835 - }; 17825 + python-simple-hipchat = callPackage ../development/python-modules/python-simple-hipchat {} 17826 + python_simple_hipchat = python-simple-hipchat; 17836 17827 17837 17828 python_keyczar = buildPythonPackage rec { 17838 17829 name = "python-keyczar-0.71c"; ··· 24530 24521 buildInputs = with self; [ nose mock ]; 24531 24522 propagatedBuildInputs = with self; [ 24532 24523 jinja2 pyyaml redis requests pagerduty 24533 - python_simple_hipchat pushbullet 24524 + python-simple-hipchat pushbullet 24534 24525 ]; 24535 24526 24536 24527 patchPhase = "> requirements.txt";