pythonPackages.pgspecial: 1.6.0 -> 1.7.0

This commit is contained in:
Aneesh Agrawal 2017-05-23 22:59:13 -04:00
parent b71b7ee622
commit 5795680fed

View File

@ -18223,12 +18223,13 @@ in {
}; };
pgspecial = buildPythonPackage rec { pgspecial = buildPythonPackage rec {
name = "pgspecial-${version}"; pname = "pgspecial";
version = "1.6.0"; version = "1.7.0";
name = "${pname}-${version}";
src = pkgs.fetchurl { src = fetchPypi {
sha256 = "09ilalpgcl86f79648qsjm87dqi97bc70y51nrf0b3i1py3mhs2m"; inherit pname version;
url = "mirror://pypi/p/pgspecial/${name}.tar.gz"; sha256 = "0jnv8mr75pjhj2azb2ljhhkd7s1b0b59f7xps322kqbpmwf26zi9";
}; };
buildInputs = with self; [ pytest psycopg2 ]; buildInputs = with self; [ pytest psycopg2 ];