mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
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
32 lines
960 B
Nix
32 lines
960 B
Nix
{ lib, stdenv, buildPythonPackage, isPy3k, fetchFromGitHub, future, pyusb }:
|
|
|
|
buildPythonPackage {
|
|
pname = "pygreat";
|
|
version = "2019.5.1.dev0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "greatscottgadgets";
|
|
repo = "libgreat";
|
|
rev = "14c00b7c8f036f4d467e4b1a324ffa3566b126fa";
|
|
sha256 = "1h0z83k1k4z8j36z936h61l8j3cjr3wsxr86k91v5c5h93g9dkqh";
|
|
};
|
|
|
|
propagatedBuildInputs = [ future pyusb ];
|
|
|
|
disabled = !isPy3k;
|
|
|
|
preBuild = ''
|
|
cd host
|
|
substituteInPlace setup.py --replace "'backports.functools_lru_cache'" ""
|
|
substituteInPlace pygreat/comms.py --replace "from backports.functools_lru_cache import lru_cache as memoize_with_lru_cache" "from functools import lru_cache as memoize_with_lru_cache"
|
|
echo "$version" > ../VERSION
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Python library for talking with libGreat devices";
|
|
homepage = "https://greatscottgadgets.com/greatfet/";
|
|
license = with licenses; [ bsd3 ];
|
|
};
|
|
|
|
}
|