mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-12 01:55:22 +08:00
9 lines
200 B
Nix
9 lines
200 B
Nix
{ src, buildPythonPackage, setuptools, matplotlib }: buildPythonPackage
|
|
{
|
|
name = "brokenaxes";
|
|
pyproject = true;
|
|
inherit src;
|
|
build-system = [ setuptools ];
|
|
dependencies = [ matplotlib ];
|
|
}
|