Loading pkgs/development/python-modules/pycups/default.nix +5 −5 Original line number Diff line number Diff line { stdenv, lib, buildPythonPackage, fetchurl, cups, libiconv }: { stdenv, lib, buildPythonPackage, fetchPypi, cups, libiconv }: buildPythonPackage rec { pname = "pycups"; version = "1.9.73"; version = "2.0.1"; src = fetchurl { url = "http://cyberelk.net/tim/data/pycups/pycups-${version}.tar.bz2"; sha256 = "c381be011889ca6f728598578c89c8ac9f7ab1e95b614474df9f2fa831ae5335"; src = fetchPypi { inherit pname version; hash = "sha256-V0NM5fYlSOsSlJyoIX8Gb07rIaXWq4sTRx3ONQ44DJA="; }; buildInputs = [ cups ] ++ lib.optional stdenv.isDarwin libiconv; Loading Loading
pkgs/development/python-modules/pycups/default.nix +5 −5 Original line number Diff line number Diff line { stdenv, lib, buildPythonPackage, fetchurl, cups, libiconv }: { stdenv, lib, buildPythonPackage, fetchPypi, cups, libiconv }: buildPythonPackage rec { pname = "pycups"; version = "1.9.73"; version = "2.0.1"; src = fetchurl { url = "http://cyberelk.net/tim/data/pycups/pycups-${version}.tar.bz2"; sha256 = "c381be011889ca6f728598578c89c8ac9f7ab1e95b614474df9f2fa831ae5335"; src = fetchPypi { inherit pname version; hash = "sha256-V0NM5fYlSOsSlJyoIX8Gb07rIaXWq4sTRx3ONQ44DJA="; }; buildInputs = [ cups ] ++ lib.optional stdenv.isDarwin libiconv; Loading