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 {
name = "pgspecial-${version}";
version = "1.6.0";
pname = "pgspecial";
version = "1.7.0";
name = "${pname}-${version}";
src = pkgs.fetchurl {
sha256 = "09ilalpgcl86f79648qsjm87dqi97bc70y51nrf0b3i1py3mhs2m";
url = "mirror://pypi/p/pgspecial/${name}.tar.gz";
src = fetchPypi {
inherit pname version;
sha256 = "0jnv8mr75pjhj2azb2ljhhkd7s1b0b59f7xps322kqbpmwf26zi9";
};
buildInputs = with self; [ pytest psycopg2 ];