4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
31 lines
820 B
Nix
31 lines
820 B
Nix
{ lib, stdenv
|
|
, buildPythonPackage
|
|
, fetchurl
|
|
, isPy3k
|
|
, freetds
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-sybase";
|
|
version = "0.40pre2";
|
|
disabled = isPy3k;
|
|
|
|
src = fetchurl {
|
|
url = "https://sourceforge.net/projects/python-sybase/files/python-sybase/${pname}-${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "0pm88hyn18dy7ljam4mdx9qqgmgraf2zy2wl02g5vsjl4ncvq90j";
|
|
};
|
|
|
|
propagatedBuildInputs = [ freetds ];
|
|
|
|
SYBASE = freetds;
|
|
setupPyBuildFlags = [ "-DHAVE_FREETDS" "-UWANT_BULKCOPY" ];
|
|
|
|
meta = with lib; {
|
|
description = "The Sybase module provides a Python interface to the Sybase relational database system";
|
|
homepage = "http://python-sybase.sourceforge.net";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ veprbl ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|